Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMutableAndImmutableSystemProperties (0.47 sec)

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

            GUtil.addToMap(systemProperties, jvmOptions.getImmutableDaemonProperties());
            return systemProperties;
        }
    
        public Map<String, String> getMutableAndImmutableSystemProperties() {
            Map<String, String> systemProperties = new HashMap<String, String>();
            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. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

                effectiveSystemProperties.putAll(daemonParams.getMutableAndImmutableSystemProperties());
            } else {
                GUtil.addToMap(effectiveSystemProperties, System.getProperties());
                effectiveSystemProperties.putAll(daemonParams.getMutableAndImmutableSystemProperties());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top