Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WithProperty (0.27 sec)

  1. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        }
    
        def "out-of-date when any input property value changed"() {
            when:
            execute(builder.withProperty("prop", "original value").build())
            def inputPropertiesChanged = builder.withProperty("prop", "new value").build()
    
            then:
            outOfDate(inputPropertiesChanged, "Value of input property 'prop' has changed for ${inputPropertiesChanged.displayName}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

            @Nested
            private SpecificProperty nestedProperty = new SpecificProperty();
            public int traversedOutputsCount;
    
            public SpecificProperty getNestedProperty() {
                traversedOutputsCount++;
                return nestedProperty;
            }
        }
    
        public interface WithProperty<T extends PropertyContainer<?>> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
Back to top