About 21,800,000 results
Open links in new tab
  1. c# - Heap class in .NET - Stack Overflow

    Possible Duplicate: Fibonacci, Binary, or Binomial heap in c#? Is there any class like heap in .NET? I need some kind of collection from which I can retrieve min. element. I just want 3 …

  2. What and where are the stack and heap? - Stack Overflow

    Sep 17, 2008 · What are the stack and heap? Where are they located physically in a computer's memory? To what extent are they controlled by the OS or language run-time? What is their …

  3. How to interpret the result of !heap -l from Windbg

    May 21, 2018 · When I use !heap -l to find leak, one of the heap entry returned is 00000000002e73d0 on heap 0000000000270000. But when I use !heap -a …

  4. Where do I set 'NODE_OPTIONS="--max-old-space-size=2048"'

    Jul 11, 2019 · The NODE_OPTIONS --max-old-space-size environment variable allows to increase Node's max heap size. Setting an environmental variable allows Node to read this …

  5. malloc - What is a Memory Heap? - Stack Overflow

    Feb 22, 2010 · A memory heap is a location in memory where memory may be allocated at random access. Unlike the stack where memory is allocated and released in a very defined …

  6. java.lang.OutOfMemoryError: Java heap space - Stack Overflow

    If you want to increase your heap space, you can use java -Xms<initial heap size> -Xmx<maximum heap size> on the command line. By default, the values are based on the JRE …

  7. Which is faster: Stack allocation or Heap allocation

    Oct 2, 2008 · Stack allocation will almost always be as fast or faster than heap allocation, although it is certainly possible for a heap allocator to simply use a stack based allocation …

  8. java - How do I analyze a .hprof file? - Stack Overflow

    Oct 9, 2008 · $ java -agentlib:hprof=help The files are usually large and docs recommend JHAT for visualizing the outputs of the heap dump (Also mentioned above). Can figure out what …

  9. Stack, Static, and Heap in C++ - Stack Overflow

    Nov 2, 2015 · The heap is a bunch of memory that can be used dynamically. If you want 4kb for an object then the dynamic allocator will look through its list of free space in the heap, pick out …

  10. Heap size in C# / .Net Framework - Can it grow and how?

    The heap in .Net is a portion of memory that for practical purposes can reach a maximum of around 1.5GB for 32-bit processes and unlimited for 64-bit (again, for practical purposes), and …