python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How do C++ compilers handle malloc failures during new operator?
C++ compilers implement new Obj as a wrapper to malloc(sizeof(Obj)). But malloc can fail! What code do C++ compilers insert to handle the failures, and what does it do?
SRobertJames
Votes: 0
Answers: 1
Order of memory locations
What is the order of memory locations allocated by new operator?
For the context, if we are implementing a linked list, then does the new nodes created successively have increasing memory locations?
nikhilreddydev
Votes: 0
Answers: 1
Java OOMs on ignite server nodes although onheap enabled
In our project we are currently (still) using Apache Ignite 2.81. We are currently facing OOMs on server nodes when multiple clients are simultaneously fetching the content of a specific cache. So far...
User0000
Votes: 0
Answers: 1
Heap size usage when having two processes in a container
We have two processes (p1 and p2) in a JVM container (in Docker) using kubernetes.
The resource Limit (in the helm chart) for the container is set to 1000 MiB.
We set the XX:MaxRAMPercentage to 50% (=...
Thomas Enblom
Votes: 0
Answers: 1