Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMutableSystemProperties (0.21 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

            GUtil.addToMap(systemProperties, jvmOptions.getMutableSystemProperties());
            return systemProperties;
        }
    
        public Map<String, String> getEffectiveSystemProperties() {
            Map<String, String> systemProperties = new HashMap<String, String>();
            GUtil.addToMap(systemProperties, System.getProperties());
            GUtil.addToMap(systemProperties, jvmOptions.getMutableSystemProperties());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

        }
    
        /**
         * @return all jvm args including system properties
         */
        public List<String> getAllJvmArgs() {
            List<String> args = new ArrayList<>();
            formatSystemProperties(getMutableSystemProperties(), args);
    
            // We have to add these after the system properties so they can override any system properties
            // (identical properties later in the command line override earlier ones)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top