Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setSystemPropertiesFrom (0.24 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultSystemPropertiesInstallerTest.groovy

        @Rule
        public SetSystemProperties sysProp = new SetSystemProperties()
    
        def "set system properties"() {
            when:
            systemPropertiesInstaller.setSystemPropertiesFrom(loadedGradleProperties)
    
            then:
            "userSystemValue" == System.getProperty("userSystemProp")
            "userSystemValue2" == System.getProperty("userSystemProp2")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 11:52:10 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/properties/SystemPropertiesInstaller.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.Build.class)
    public interface SystemPropertiesInstaller {
    
        void setSystemPropertiesFrom(GradleProperties gradleProperties);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 980 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/properties/DefaultSystemPropertiesInstaller.java

        ) {
            this.environmentChangeTracker = environmentChangeTracker;
            this.startParameter = startParameter;
            this.gradleInternal = gradleInternal;
        }
    
        @Override
        public void setSystemPropertiesFrom(GradleProperties gradleProperties) {
            // TODO:configuration-cache What happens when a system property is set from a Gradle property and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 11:21:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/DefaultGradlePropertiesController.java

                MutableGradleProperties loadedProperties = propertiesLoader.loadGradleProperties(settingsDir);
    
                if (setSystemProperties) {
                    systemPropertiesInstaller.setSystemPropertiesFrom(loadedProperties);
                }
    
                Map<String, Object> projectProperties = projectPropertiesLoader.loadProjectProperties();
                loadedProperties.updateOverrideProperties(projectProperties);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 11:26:22 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top