About 6,100,000 results
Open links in new tab
  1. What is the difference between JVM, JDK, JRE & OpenJDK?

    Jul 19, 2012 · JVM is the Java Virtual Machine – it actually runs Java ByteCode. JRE is the Java Runtime Environment – it contains a JVM, among other things, and is what you need to run a …

  2. java - How to set the maximum memory usage for JVM? - Stack …

    Sep 29, 2009 · I want to limit the maximum memory used by the JVM. Note, this is not just the heap, I want to limit the total memory used by this process.

  3. jvm - how to increase java heap memory permanently? - Stack …

    Jul 20, 2012 · The Java Virtual Machine takes two command line arguments which set the initial and maximum heap sizes: -Xms and -Xmx. You can add a system environment variable …

  4. java - How do I tell Gradle to use specific JDK version ... - Stack ...

    JAVA_HOME_FOR_MY_PROJECT=<path to my desired JDK> What I don't want point JAVA_HOME to the desired JDK I could live with many suggestions: a solution that defines a …

  5. java - How can I increase the JVM memory? - Stack Overflow

    Feb 19, 2010 · HI, I like to know can I increase the memory of the JVM depending on my application.If yes how can I increase the JVM memory? And how can I know the size of JVM?

  6. Is there a java setting for disabling certificate validation?

    Sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: …

  7. jvm - Eclipse error: 'Failed to create the Java Virtual Machine ...

    Sep 5, 2011 · 3 The proper solution to your problem is to add the -vm line pointing to jvm.dll file of your Java folder in ini fie. -vm C:\Program Files\Java\jre1.8.0_202\bin\server\jvm.dll /*there is …

  8. How is the default max Java heap size determined?

    For Java SE 5: According to Garbage Collector Ergonomics [Oracle]: initial heap size: Larger of 1/64th of the machine's physical memory on the machine or some reasonable minimum. …

  9. What are the -Xms and -Xmx parameters when starting JVM?

    Feb 7, 2013 · From Oracle's documentation: Note that the JVM uses more memory than just the heap. For example Java methods, thread stacks and native handles are allocated in memory …

  10. Setting the default Java character encoding - Stack Overflow

    From the JVM™ Tool Interface documentation… Since the command-line cannot always be accessed or modified, for example in embedded VMs or simply VMs launched deep within …