Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConfigureOnDemandOption (0.32 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/ProviderStartParameterConverterTest.groovy

            start.dryRun
        }
    
        def "the start parameter is configured from properties"() {
            given:
            _ * properties.properties >> [
                (StartParameterBuildOptions.ConfigureOnDemandOption.GRADLE_PROPERTY): "true",
            ]
    
            when:
            def start = new ProviderStartParameterConverter().toStartParameter(params, layout, properties)
    
            then:
            start.configureOnDemand
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

                }
            }
        }
    
        public static class ConfigureOnDemandOption extends BooleanBuildOption<StartParameterInternal> {
            public static final String GRADLE_PROPERTY = "org.gradle.configureondemand";
    
            public ConfigureOnDemandOption() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top