Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for DefaultProperty (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

    import org.gradle.api.internal.DynamicObjectAware;
    import org.gradle.api.internal.GeneratedSubclass;
    import org.gradle.api.internal.IConventionAware;
    import org.gradle.api.internal.provider.DefaultProperty;
    import org.gradle.api.internal.provider.support.LazyGroovySupport;
    import org.gradle.api.invocation.Gradle;
    import org.gradle.api.plugins.ExtensionAware;
    import org.gradle.api.plugins.ExtensionContainer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                failureDescriptionContains("Configuration cache state could not be cached: field `__stringInput__` of task `:failingTask` of type `FailingTask`: error writing value of type 'org.gradle.api.internal.provider.DefaultProperty'")
            } else {
                failureHasCause("Failed to calculate the value of task ':failingTask' property 'stringInput'.")
            }
            failureHasCause("BOOM")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            where:
            method << ["get", "finalizeValue", "isPresent"]
        }
    
        Property<String> elementProperty() {
            return new DefaultProperty<String>(host, String)
        }
    
        def "runs side effect when calling '#getter' on property to which providers were added via 'add'"() {
            def sideEffect1 = Mock(ValueSupplier.SideEffect)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            where:
            method << ["get", "finalizeValue", "isPresent"]
        }
    
        Property<String> valueProperty() {
            return new DefaultProperty<String>(host, String)
        }
    
        def "runs side effect when calling '#getter' on property to which providers were added via 'put'"() {
            def sideEffect1 = Mock(ValueSupplier.SideEffect)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top