Garbage, refers to objects, data, or other regions of the memory of a computer system (or other system resources), which will not be used in any future computation by the system, or by a program running on it.
0
votes
0answers
13 views
explicitly setting the interval for distributed GCs does not seem to work
I have been trying to control the interval between Full GCs triggered by RMI when using JMX (known as distributed GCs). Specifically, I start my java platform like this:
java ...
0
votes
0answers
22 views
interpretation of java GC log files [closed]
Just wondering if anyone knows a good source of information on how to interpret GC log files? I have seen bits and pieces around but I keep seeing some new things (i.e. DefNew) that I can't figure ...
1
vote
1answer
45 views
Garbage collection in Backbone
* Updated - Added a sample code for one of the view *
This has been discussed a number of times and I have gone through a lot of suggestion on this topic but I still don't have any luck.
My ...
-1
votes
2answers
57 views
Where will be the most chance of the garbage collector being invoked?
i an not able to track where garbage collector being invoked.plz help
class Garbage01
{
public static void main(String args[])
{
Garbage01 h = new Garbage01();
h.methodA(); /* Line 6 */
}
...
0
votes
0answers
12 views
How do I increase the time that verbosegc logs for in tomcat? [closed]
Garbage collection logging is currently enabled within my tomcat environment; however, it only logs for the last 5 days. How can I increase this amount?
-1
votes
0answers
60 views
Binary heap in C-printing garbage when building it
this is the 2 function which I've built to build my max- binary- heap.
The heap is stored in an array(parent=1,left son=2i+1, right son=2i+2).
typedef struct
/*elements is the array that contains ...
-2
votes
0answers
60 views
Is the code getting garbage collected? [closed]
I found this code online, it seems to be working correctly for other people.
What happens is when I run it I don't get any errors but the textbox is not recording the keys typed.
I am thinking that ...
0
votes
0answers
14 views
What is the magic inside ilog.views.chart.data.IlvDataPoints#dispose
Recently we had a problem with optimalization.
Finally my colleague found that calling dispose method optimizes garbage collecting.
But we are curious how it is done. Sources are not available for ...
-3
votes
1answer
49 views
Receiving Garbage data , when file is read and printed [closed]
In the code posted below, there is problem when writing and reading a structure from a file. The output result is garbage data, I wasn't able to find a solution on my own. Operating system used: ...
4
votes
2answers
167 views
garbage collector c++
I've been trying to create a garbage collector in c++, i've designed it as a base class to all of mine, called garbageCandidate, which holds a static vector containing pointers to garbageCandidate ...
3
votes
2answers
53 views
For Javascript game engines, is re-using a global variable more or less efficient than making locals?
A lot of Javascript performance guides tend to emphasize two points:
Stay within scope; looking up variables progressively through each scope is expensive.
Don't abuse the garbage collector by ...
1
vote
1answer
49 views
Reading Garbage with shmget
I have created two processes. One of them creates a shared memory chunk and the other tries to read it. There are no compilation errors with this code but somehow Process 2 behaves weird.
Process 1:
...
1
vote
5answers
106 views
Java, make sure objects are being deleted when removed from arrayList
Lets say that I'm deleting a "dead" object called "Enemy".
Using something like this:
for(int i = 0; i < enemies.size(); i++)
{
Enemy en = (Enemy) enemies.get(i);
if(en.getVisible() ...
0
votes
4answers
65 views
Why am I getting garbage when I use pointers in this program? C Language
I am a C++ programmer trying to get a grasp of the C language syntax and I do not understand why I'm getting garbage values when I use pointers in this function.
#include<stdio.h>
#include ...
3
votes
2answers
105 views
Assign value is garbage or undefined
I have posted screenshot of my error code.
heights output
please any one can help me?
2
votes
3answers
234 views
How to stop Garbage collection in Android 2.3.3
I have android application 2.3.3 use calendarView
when press button => show dialog (contain calendarView)
My logcat display:
D/dalvikvm(15292): GC_CONCURRENT freed 1988K, 10% free 20024K/22087K, ...
-8
votes
2answers
69 views
cout corrupt char* [closed]
I have written a code to print the name of 2 workers, but instead it prints garbage.
cout << "highest salary: " << highestSalary.getID() << " " << highestSalary.getName() ...
1
vote
3answers
73 views
Why is the value of this variable changing to garbage once inside for-loop? C
Why is the value of n changing to garbage inside the for-loop? (I'm new to C language, I come from a C++ background)
float n = 3.0;
printf ("%f\n", n);
for (; n <= 99.0; n += 2)
printf ...
2
votes
2answers
95 views
How to remove question mark garbage data, dynamically, from files?
I have an unknown number of files with garbage data interspersed and I want to remove said garbage data dynamically, perhaps using regex.
It'll usually look something like this in an HTML file in a ...
1
vote
1answer
123 views
casting to a derived class and garbage collection in C#
Hey I am curious about something. If I create a derived class in a method, then return a pointer to the base class, and all other references to the fact that it is the derived class disappear, what ...
-5
votes
1answer
154 views
Java garbage collection [closed]
This is not a programming question. I figured you guys would be able to explain a whole lot better than anybody else, so here I am.
Without going into much detail, I play a game called Minecraft, java ...
1
vote
1answer
68 views
How to delete an object through his own class?
I know how to leave a signal for the Garbage Collector to delete an object by setting its reference variable to null:
Player player_reference = new Player();
player_reference = null;
// Now the ...
-2
votes
1answer
33 views
Python-Django - Garbage memory [closed]
The problem is: After update some data in the database, the query come was wrong, but when I restart the server, the query come correct.
Anyone knows what should be?
Sorry bad English.
1
vote
3answers
244 views
Dereferencing Objects in an Array for Java Garbage Collection
I have done some research on the java garbage collector and understand that an object who is no longer referenced will/should be handled by the garbage collector. In terms of arrays-of-objects, I am ...
0
votes
2answers
25 views
does dispose method disposes the calling object also?
I found the following code on MSDN:
public class DisposeExample
{
public class MyResource: IDisposable
{
private IntPtr handle;
private Component component = new ...
0
votes
2answers
50 views
While writing data to a text file returned by server, some extra garbage values inserted in some lines
This is the code where the socket has been created and recieved data is stored in a text file
// Initialize Winsock.
cout << "connecting1\n";
WSADATA wsadata;
int iResult = ...
1
vote
3answers
80 views
accessing array's last element when passing array in function argument shows garbage value
I'm passing an array in function argument and when I tried to access the last element using arr[-1] in the function's body I'm getting some garbage. Can someone explain me why is that so?
Here is the ...
1
vote
4answers
71 views
Will the garbage collector collect a leaf of a tree that is not accessible anymore but still points to the tree
What happens in this case? will it be collected even though it still has a reference to the tree?
class BinarySearchTree {
TreeNode root;
/* constructor including assigning the root*/
...
0
votes
1answer
186 views
VB.NET memory not released by GC
i have this small piece of code where i would expect that the GC at a certain point would wipe the memory, instead i run out of memory.
Is this a correct behaviour for the GC?
Private Sub ...
0
votes
0answers
61 views
Chrome does not collect garbage?
Pressing F12 (toolbar) starts the garbage collector in Chrome. Or when the toolbar is already visible the button "Collect Garbage" will do the trick.
However, it looks like memory is never freed ...
2
votes
1answer
52 views
Java Garbage Collector Logic Query
A quick question about the Java Runtime Garbage Collector.
Take this scenario:
Two Objects both hold a reference to the other.
No other Objects hold any reference to these Objects.
The Objects are ...
0
votes
1answer
68 views
String object creation subtleties: aliases and garbage
Practice Test Question:
Consider the following code:
String entree = new String (âchickenâ);
String side = âsaladâ;
entree = âturkeyâ;
String dessert;
entree = side;
String extra = entree + side;
...
1
vote
0answers
76 views
Output giving garbage value
Below i am pasting a source code of c++ program,My source code has to do simple input and out put operations on classes but when i compile the program class book output is coming right but class tape ...
2
votes
1answer
157 views
d garbage collector and realtime applications
I'm thinking about learning D (basically "C++ done right and with garbage collection and message passing between threads") and talked to a colleague who's been long-time C++ programmer and basically ...
2
votes
2answers
135 views
Weird garbage production when instantiating Objects in Java
I am profiling the garbage behavior of java.lang.String and it looks like each time you instantiate a string for the first time inside any class it always generate garbage. Would anyone know why?
...
5
votes
2answers
154 views
Does JavaScript garbage collect this?
Every once in a while I find myself doing something along the lines of the following
var img = new Image();
img.src = 'php/getpic.php?z=' + imid + '&th=0';
img.onload = ...
0
votes
0answers
29 views
How to find out Garbage collector mode running mode
Could you please help me out for finding Garbage collector is running mode ? either work server or work station mode ?
i am using .net 4.0 and windows server 2008
0
votes
1answer
20 views
getting additional data in passwordData when using SecKeychainFindGenericPassword in osx
I am using the following code to get password form the Keychain.
-(OSStatus *)getPasswordFromKeyChain:(NSString *)username{
OSStatus status;
const char *cService_name = "Mac App";
UInt32 ...
7
votes
1answer
383 views
debugging node js garbage collection / memory problems with chrome
I'm attempting to get to the root problem of some memory leaks I'm having with a Node app (v 0.8.6).
To help figure this out I'm using https://github.com/c4milo/node-webkit-agent. Because the app is ...
0
votes
0answers
49 views
Django garbage collection on text parsing
I have a model with a plain text field. I overdid the admin form's default clean method so I can parse the text using a script like so:
from myModel import parse_text
def clean(self):
...
1
vote
1answer
127 views
Android: why is BufferedReader reading past the EOF?
I was reading in a dictionary of words in my Android app in the emulator and caught the BufferedReader reading past the EOF. Why would it be doing that? Here is the code using the BufferedReader.
...
1
vote
3answers
161 views
how to determine objects eligible for garbage collection in the given program?
Given:
public class Trees {
Trees t;
public static void main(String[] args) {
Trees t = new Trees();
Trees t2 = t.go(t);
t2 = null;
// more code here : LINE ...
1
vote
1answer
64 views
garbage when copying two files in C?
I have this copying code from infile to outfile,
the problem is that there is a lot of garbage added at the end of the outfile
ssize_t nread;
int bufsize=512;
char buffer[bufsize];
while ( ...
0
votes
0answers
45 views
Log Analysis of GC
I have configured GC collector and leak detector also into my code. When I run the execute . I got the message into my stderr in following way. Can anyone provide me some input.I am not able to ...
0
votes
1answer
55 views
Second user-defined function returns garbage value?
I have been teaching myself C programming, and I've come to a difficult point with using variables across functions.
When, I compile this program and run it, the function askBirthYear returns the ...
5
votes
5answers
162 views
Is it a memory leak if the garbage collector runs abnormally?
I have developed a J2ME web browser application, it is working fine. I am testing its memory consumption. It seems to me that it has a memory leak, because the green curve that represents the ...
1
vote
1answer
102 views
Arrays.sort on 2-dimensional array without triggering Garbage Collection?
This code works perfectly, but unfortunately it triggers garbage collection because of the Arrays.sort() Comparator.
Is there a way to do this that won't trigger Garbage Collection?
(NOTE: This code ...
0
votes
1answer
148 views
wchar_t* weird behavior
hi im loking for some advice
im working in a command interpreter for class and i have this "command" (that is a class) that get some c strings from internal variables and make an std::wstring, then i ...
1
vote
1answer
97 views
Where is Garbage Collection in Xcode Cocoa?
As I know , Garbage collection is not enabled by default in Cocoa and should be selected in Build setting. But in build setting I just can see automatic reference counting. What am I missing?
0
votes
1answer
445 views
Full GC, PSPermGen not cleaned
My Java EE server has been working nicely, and then inside 10 mins full gc started to occur more frequently, then finally it was stopped all the time due to GC. PSPermGen was not released.
My JVM ...

