Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getEffectiveSystemProperties (0.24 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            // Set the system properties and use this process
            Properties properties = new Properties();
            properties.putAll(daemonParameters.getEffectiveSystemProperties());
            System.setProperties(properties);
    
            BuildProcessState buildProcessState = new BuildProcessState(startParameter.isContinuous(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. 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());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top