Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for PropertyValue (0.19 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

        }
    
        suspend fun writeInputProperty(propertyName: String, propertyValue: Any?) =
            writeProperty(propertyName, propertyValue, PropertyKind.InputProperty)
    
        suspend fun writeOutputProperty(propertyName: String, propertyValue: Any?) =
            writeProperty(propertyName, propertyValue, PropertyKind.OutputProperty)
    
        val inputProperties = collectRegisteredInputsOf(task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

            String propertyValue()
        }
    
        static class RootBuild implements BuildWithSystemPropertyDefined {
    
            @Override
            void setup(AbstractIntegrationSpec spec, String propertyKey) {
                spec.testDirectory.file("gradle.properties") << "systemProp.$propertyKey=${propertyValue()}"
            }
    
            @Override
            String propertyValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

                return taskPropertySpecs;
            }
        }
    
        private static class ResolvingValue implements PropertyValue {
            private final PropertyValue delegate;
            private final Function<Object, Object> resolver;
    
            public ResolvingValue(PropertyValue delegate, Function<Object, Object> resolver) {
                this.delegate = delegate;
                this.resolver = resolver;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputs.java

                @Nullable FileNormalizer fileNormalizer,
                PropertyValue value,
                InputFilePropertyType filePropertyType
            ) {
                hasInputs = true;
            }
    
            @Override
            public void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {
                hasInputs = true;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformRegistrationFactory.java

    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.properties.InputBehavior;
    import org.gradle.internal.properties.InputFilePropertyType;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    import org.gradle.internal.properties.annotations.TypeMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                                inputFiles[propertyName] = layout.files(value)
                            }
    
                            @Override
                            void visitOutputFileProperty(String propertyName, boolean optional, PropertyValue value, OutputFilePropertyType filePropertyType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

                }
            }
    
            private void addSystemPropertyIfExist(List<String> result, String propertyName, Object propertyValue) {
                if (propertyValue != null) {
                    result.add("-D${propertyName}=${propertyValue}".toString())
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalkerTest.groovy

        def "instance walker should visit nested properties unpack errors for #propertyType"() {
            given:
            Supplier<Object> propertyValue = propertyValueSupplier as Supplier<Object>
            def instance = new Object() {
                @TestNested
                Object getNested() {
                    return propertyValue.get()
                }
            }
            Map<String, Throwable> errors = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

            (0..Math.max(propertyCount, children.size()) - 1).each {
                def propertyType
                def propertyValue
                if (it < children.size()) {
                    def childNumber = children.get(it)
                    propertyType = "Production${childNumber}"
                    propertyValue = "new Production${childNumber}()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            then:
            outputContains("Execution: ${includedBuildSystemPropertyDefinition.propertyValue()}")
    
            when:
            System.clearProperty(systemProp)
            configurationCacheRun fixture.task
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Execution: ${includedBuildSystemPropertyDefinition.propertyValue()}")
    
            cleanup:
            System.clearProperty(systemProp)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top