The heap is process memory set aside for dynamic allocation.

learn more… | top users | synonyms

0
votes
1answer
20 views

XSLT and XML does not match

I have an XML on which I am doing an XSLT transformation. The XSLT I am receiving from some other source, so I have no control over it. The problem occurs when there is a slight difference between the ...
0
votes
2answers
39 views

java.exe process uses more memory and does not free it up

I have a java application which when in idle state before any complex executions, uses 23 MB in Heap and the java.exe process size in TaskManager was around 194 MB. After some complex operations, the ...
1
vote
4answers
72 views

Object deletion from heap space

In main function I create an object using new and don't delete it.I hope the heap space would be cleared once the process exits .The below is a sample code where object of class A is a member ...
1
vote
5answers
48 views

java.lang.OutOfMemoryError: Java heap space when stitching 13k .png images together

I have 13255 images, each 240 x 240 pixels wide, the biggest 15,412 bytes in size and the smallest 839 bytes. I am trying to loop through the folder adding each of them to a File[]. Once I have an ...
0
votes
0answers
14 views

Eclipse uses all available memory and crashes. Can I fix this?

I have a problem with Eclipse showing me errors about Passing Heap Size. I use Eclipse for Mobile Developers, Version: Juno Service Release 2, Build id: 20130225-0426. My Eclipse settings: -startup ...
0
votes
2answers
55 views

HEAP CORRUPTION DETECTED in C

I am having some problems with my program and getting this error : HEAP CORRUPTION DETECTED: before Normal block (#9873672) at 0x00968988. CRT detected that the application wrote to memory before ...
0
votes
0answers
32 views

java heap dump is not getting generated

not getting java heap dump on outofmemoryerror: Tried this (one.exe is my java rcp app): one.exe -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=C:\Temp but didn't help, the folder path is ...
0
votes
1answer
51 views

Unable to execute dex because of java heap space in eclipse with a tiny android application

I have an android application that only has one jar import which is 4 mb in size (Symja https://code.google.com/p/symja/) Literally the only code in the project is creating a new textview and setting ...
0
votes
3answers
53 views

Initializing a data member array of object pointers to the correct size and null

I have a simple C++ Node class which contains an array data member of pointers to the same type. This array is dynamically allocated and its pointers should default to null but I'm not sure how to ...
0
votes
0answers
29 views

Initializing VM error

I have a problem. I have followed a tutorial about making an android 2D game, it's called kilobolt. (http://www.kilobolt.com/) But when i want to debug the game I get this error: Android Dex: ...
1
vote
2answers
72 views

Static variables : How to reclaim memory?

I created a service that keeps running at the background - it should never go offline. With each smaller module that I plug-in to the service I'm a little worried about the static variables that I ...
0
votes
2answers
57 views

hard limit on java heap size [duplicate]

This goes to all Java heap/GC experts out there. Simple and straight question: is there a hard limit on the maximum figure one can set the Java heap size to? One of the servers I'm working on is ...
2
votes
2answers
84 views

Out of memory when doing a big query?

I received this error when trying to do big query. java.lang.OutOfMemoryError: Java heap space I've searched and found that applying setAutoCommit(false) and setFetchSize methods to my prepared ...
-1
votes
5answers
87 views

how to intentionally leak non-pointer heap allocated object

say I have class Foo which I allocate on the heap via the 'new' keyword. Say Foo has non-pointer data member Bar. Bar, although non-pointer, is itself on the heap since it is a part of Foo. It will be ...
4
votes
1answer
130 views

How can I check if there is enough heap memory available?

I have an assignment that requires me to create a "Heap" class that allocates and deallocates memory. I believe that my code works and the solution builds and runs properly but I want to make sure ...
0
votes
0answers
43 views

Which languages necessarily need heap allocation in the runtime environment?

I saw this question recently Which languages necessarily need heap allocation in the runtime environment ? (A) Those that support recursion (B) Those that use dynamic scoping (C) Those ...
1
vote
1answer
49 views

How to allocate memory on the heap via user input?

Is there a way to create a function that can allocate a chunk of memory onto the heap where a caller can pass a size that they want to allocate and return a valid address for the caller to use? I ...
0
votes
1answer
32 views

What is the “leak” of object properties in Javascript (chrome dev tool)?

I'm debugging a memory leak in my javascript code using the chrome developper tool and the Google's 3 snapshot techniques which i can't recommand enough. However, now, by looking at the objects ...
0
votes
1answer
195 views

“Running a 64-bit JVM is not supported on this platform” with java -d64 option on 64bit linux

I have a 64 bit linux os: $ uname -p x86_64 java -version listed: java version "1.6.0_43" Java(TM) SE Runtime Environment (build 1.6.0_43-b01) Java HotSpot(TM) Server VM (build 20.14-b01, mixed ...
0
votes
3answers
87 views

Is it okay if program has Memory corruption while debugging, but runs fine in relase

I have a program which causes Memory corruption while debugging, but runs perfectly fine in release. To add strangeness, program fulfils its function before "crashing" (it saves data to a file). Can ...
3
votes
2answers
186 views

Android grow heap - should I worry?

I've read something about an application having 16MB of memory "reserved" when it's on front. At least, as a developer I should count on this, even though depending on the device it may be more. I'm ...
0
votes
1answer
53 views

StringHTTPMessageConverter loading all charsets causing java heap jump

We are having a portlet application which uses Spring 3.1.0.Final and deployed on WAS 6.1. We have multiple portlets using Spring MVC in past. This is the first portlet with Spring 3. I am using ...
13
votes
1answer
217 views

Java - GC running but not reclaiming anything

Over the last couple of days, we are seeing JVM's on our servers get into a state where they are spending 100% CPU time in GC of OldGen, when: A. They don't need to because there is plenty of space ...
1
vote
2answers
212 views

Why does Java use Heap Data Structure to Store Object?

Or it does NOT use Heap "Data-Structure". The name given to the Memory for allocation(Pool of Memory) is just known as "Heap"? If yes, then is that any relation between Heap Data-Structure and Heap ...
0
votes
0answers
79 views

external allocation too large for this process, android

in my simple app i am using 6 buttons and setting background with png. Button btnGadgetmusic = (Button) findViewById(R.id.gadgetmusic); ...
1
vote
1answer
81 views

Frequent full GC with empty heap

I've got a GC log file that shows frequent full GC when the heap is empty (every 30 mins initially, then 20, 10, 5 up to few events a minute. At some point, though, I can see a sudden increase in the ...
3
votes
2answers
59 views

java first encounter with heap space error server data logger

I built my first Java program which is built on top of the Interactive Brokers Java API. That may or may not be important. I just extended the main API classes with a couple new classes. The ...
4
votes
3answers
125 views

17.8 MiB heap allocation for a simple “Hello World” project?

I am guessing there is an obvious answer here... I am left confused with this one: Why do I get 17.8 MiB heap memory allocated when all I have done is: Created a simple "Hello World" project with ...
0
votes
3answers
107 views

Java memory heap error

I didn't find anything for this error on the net, can anyone help? I have a stub class that is more than 30,000 lines of code, maybe it caused the problem?
2
votes
4answers
89 views

about import statement

I want to know where can I check how many classes have been loaded by the class loader. I want to know, whether import statement in the class with * mark will load those many classes in the perm area ...
1
vote
2answers
49 views

How to calculate size for oldGen needed for work of GC?

I have java web (tomcat) application that consumes 10G of heap memory (represent data structure in memory). But it works when I will set e.g. Xmx to 20G. When I set heap memory e.g. to 11G my ...
0
votes
0answers
64 views

Why doesn't valgrind massif report any function names or code references?

I have a program that is unexpectedly using a large amount of heap (about 3GB). I ran it through valgrind memcheck which reported no leaks, claiming that all the heap memory is still reachable. So I ...
0
votes
4answers
98 views

С++ heap realization

C++ have two main memory types: heap and stack. With stack everything is clear, and Arised a question for me - how heap memory is realized. I tried to google, read about heap data structire, but that ...
2
votes
0answers
89 views

Solution for heap exception

I have an dedicated server to host my application which has a mysql,tomcat and a dedicated server application running for the solr server. The Server is having a 64gb hard disk and 4gb ram. So now my ...
8
votes
2answers
116 views

What happens when you import a package?

For efficiency's sake I am trying to figure out how python works with its heap of objects (and system of namespaces, but it is more or less clear). So, basically, I am trying to understand when ...
0
votes
0answers
83 views

memory issue with datafu StreamingQuantile in apache pig

I have a pig script to compute 1000 quantiles of multiple columns. I run into an issue with java heap memory. Here is my pig script. SET mapred.child.java.opts ' -Xmx4096m -Dfile.encoding=UTF8 ...
0
votes
4answers
41 views

How does the stack work?

I have a couple questions about the stack. One thing I don't understand about the stack is the "pop" and "push" idea. Say I have integers a and b, with a above b on the stack. To access b, as I ...
0
votes
1answer
116 views

heap size increase upto 35mb when application started

My application contains so many activities up to 40 with 5tabs. and each activity has one background image. when i entered into one activity, background image for that activity has been loaded and ...
0
votes
0answers
110 views

Needs heap-memory, non-heap memory, thread count etc values for tomcat in linux

We are planning to write scripts to fetch the values of Heap memory, non-heap memory, thread count etc, of tomcat from command line ( in linux). I have explored and found that we can use JMX via ...
0
votes
1answer
46 views

Can I say that in languages with Dynamic Type Binding all variable are allocated on a heap?

I am studying about the binding process and the classification of variable based on storage binding. So, I faced with four kind of variable: Static variables: these are bound to memory before ...
0
votes
3answers
164 views

Read pdf using java

i have a problem with reading PDF file content in java using itextpdf.jar , if i read a small sized(5-15MB) PDF file means its working well, it is possible to read it's contents but when i read ...
0
votes
3answers
171 views

Java Program taking up too much memory

This is my Problem for which i made the program Ali baba did a trick on the forty thieves and was able to trap them inside a big cave which was the home of wild wolves. The thieves are without ...
0
votes
2answers
318 views

Java Heap Space error from command line

I have tried to create a small utility which reads excel and sends email. I am using ApachePOI library for that. When I executed the code from eclipse, initially I got java.lang.OutOfMemoryError: GC ...
3
votes
0answers
76 views

Understanding the Java Heap [closed]

I have a Windows Server 2008 machine with 2 drives: C:\ and G:\ On the G:\ drive (the larger one), I have installed a third party tool that we use to generate PDFs on the file. It has it's own server ...
6
votes
3answers
138 views

Why is a __block variable is moved to the heap BEFORE the block is copied? [closed]

I know that a __block variable will be moved to the heap from the stack if a Block accessing it was copied. But the following test code show me that the __block variable is moved to the heap before ...
0
votes
1answer
145 views

Windows 2Gb memory limit [closed]

I use a third party test application. I give the application the test input and get the results. If I feed huge data the application it gives "memory allocation error" When I observe the used memory ...
0
votes
1answer
138 views

java heap size increasing

I compile a jar file, and i write to the Log every half a minute to check threads and memory situation. Attached are the start of the log, and the end of the day log, after this software was stuck, ...
0
votes
1answer
201 views

General questions about developing on WP 8

As a new developer for Windows Phone 8 (will be called WP8 from now), yet an experienced one of android, I wonder what difficulties will I have when developing for the WP8. I would like to ask people ...
1
vote
2answers
494 views

An internal error occurred during: “Updating indexes”.Java heap space during eclipse start up?

I am getting below error while starting eclipse An internal error occurred during: "Updating indexes".Java heap space? It was running fine half an hour before.I restarted the eclipse and getting ...
0
votes
1answer
254 views

how to set heap size to minimum when application was closed

I am developing one android application which is using more images with resolution 640*960 approximately. all these images are loaded with bitmaps with proper scaling factor. When i am loading ...

1 2 3 4 5 8