Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional valid starting VM arguments #954

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Aug 13, 2024

  1. Add additional valid starting VM arguments

    These were introduced in Java 8u191 (2018-10-16).
    
    An important note on `MinRAMPercentage`: it is only used on ''small'' heap sizes
    (think <100M). It is primarily used for container applications.
    
    The properties match the following requirements:
    * No `"` or `%` character (the double values do not include `%`)
    * Values include `.` (0x2E) and 0-9 (0x30-0x39); that is between `0x20` and `0x17E`
    * The strings do not include `\`
    
    While these properties were originally introduced for containers, they are also
    useful for desktop applications. Of specific note, `MaxRAMPercentage` is useful
    for applications that can have a _small_ amount of data in memory to a _large_
    amount of data in memory.
    
    Default values:
    * InitialRAMPercentage: 1.5625
    * MinRamPercentage: 50.0
    * MaxRamPercentage: 25.0
    tsmock committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    1f3ff77 View commit details
    Browse the repository at this point in the history