Search code examples
How is it that when I call a method 10000 times it throws out of memory error?...


javaalgorithmmemory-managementout-of-memoryjava-memory-model

Read More
Ensuring memory consistency after a stream's worker threads have completed...


javaconcurrencymemory-modeljava-memory-model

Read More
Please explain initialization safety as spelled out in Java memory model...


javamultithreadingsynchronizationthread-safetyjava-memory-model

Read More
Why doesn't the C++/Java memory model include condition variables...


javac++concurrencyjava-memory-modelmemory-model

Read More
Why DCL without volatile is valid for primitives?...


javamultithreadingconcurrencyvolatilejava-memory-model

Read More
Does Java guarantee that currently synchronized objects are not garbage collected?...


javagarbage-collectionjava-memory-model

Read More
Does JVM guarantee to cache not volatile variable?...


javamultithreadingjvmjava-memory-modelnon-volatile

Read More
In Java , what operations are involved in the final field assignment in the constructor?...


javamultithreadingx86jvmjava-memory-model

Read More
Why is this Java program containing two volatile writes data race free?...


language-lawyervolatilejava-memory-modelhappens-beforedata-race

Read More
Does the JVM / x86 guarantee non-volatile propagation of values across cores?...


multithreadingconcurrencyjvmjava-memory-model

Read More
Is volatile read happens-before volatile write?...


javamultithreadingsynchronizationjava-memory-model

Read More
Lazy initialization / memoization without volatile...


javamemoizationlazy-initializationjava-memory-model

Read More
how to understand volatile example in Java Language Specification?...


javajvmlanguage-lawyerjava-memory-model

Read More
Understanding why is it unsafe to start a thread inside a constructor in terms of the Java memory mo...


javamultithreadingjava-memory-model

Read More
Could the JIT collapse two volatile reads as one in certain expressions?...


javavolatilejitmemory-modeljava-memory-model

Read More
Java Memory Model happens-before guarantees for Thread Pool interactions...


javajava.util.concurrentjava-memory-model

Read More
Double-checked locking without volatile...


javamultithreadingfinaljava-memory-modeldouble-checked-locking

Read More
How synchronized and volatile work in Java memory model?...


javasynchronizedvolatilejava-memory-model

Read More
What guarantees the thread safety of Guava's ImmutableList?...


javamultithreadingguavajava-memory-model

Read More
Immutability and reordering...


javamultithreadingconcurrencyjava-memory-model

Read More
volatile + immutable holder object = thread safe?...


javathread-safetyimmutabilityvolatilejava-memory-model

Read More
Is setting a HashMap thread safe?...


javamultithreadingreferencethread-safetyjava-memory-model

Read More
I know that happens-before does not imply happening before, can the code "A = B + 1; B = 1;&quo...


javajava-memory-model

Read More
Memory order and visibility in Java thread...


javajava-memory-model

Read More
Understanding happens-before and synchronization...


javamultithreadingjava-memory-model

Read More
Each action in a thread happens-before every action in that thread that comes later in the program&#...


javamultithreadingjava-memory-model

Read More
Happens-before rules in Java Memory Model...


javamultithreadingconcurrencyjava-memory-modelhappens-before

Read More
Safe initialisation of null reference...


javathread-safetyjava-memory-modelsafe-publication

Read More
If Thread B wishes to see changes Thread A makes, can only the last change be to a volatile variable...


javamultithreadingvolatilejava-memory-modelmemory-visibility

Read More
Java Memory Model interaction of synchronization, volatile and (stamped) locks...


javamultithreadingconcurrencyjava-memory-model

Read More
BackNext