Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isNonStandardImportantProperty (0.39 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/EstablishBuildEnvironment.java

                if (SystemProperties.getInstance().isStandardProperty(entry.getKey())) {
                    continue;
                }
                if (SystemProperties.getInstance().isNonStandardImportantProperty(entry.getKey())) {
                    continue;
                }
                if (entry.getKey().startsWith("sun.") || entry.getKey().startsWith("awt.") || entry.getKey().contains(".awt.")) {
                    continue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

         * Returns true if the key is an important property that is not guaranteed to be contained in System.getProperties().
         * The property is usually there and should not be adjusted.
         */
        public boolean isNonStandardImportantProperty(String key) {
            return IMPORTANT_NON_STANDARD_PROPERTIES.contains(key);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top