Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for PropertyValue (0.15 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. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.CallableBuildOperation;
    import org.gradle.internal.operations.UncategorizedBuildOperations;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.operations.dependencies.transforms.ExecuteTransformActionBuildOperationType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            outputContains("some.property = $propertyValue")
    
            when:
            configurationCacheRun("printProperty")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("some.property = $propertyValue")
    
            where:
            propertyValue | propertySetter
            "some.value"  | """System.setProperty("some.property", "$propertyValue")"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                    Object propertyValue = metaBeanProperty.getGetter().invoke(bean, new Object[0]);
                    if (propertyValue instanceof LazyGroovySupport) {
                        value = propertySetTransformer.transformValue(propertyType, value);
                        ((LazyGroovySupport) propertyValue).setFromAnyValue(value);
                        return;
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    
    fun Project.selectStringProperties(vararg propertyNames: String): Map<String, String> =
        propertyNames.mapNotNull { propertyName ->
            stringPropertyOrNull(propertyName)?.let { propertyValue ->
                propertyName to propertyValue
            }
        }.toMap()
    
    
    /**
     * Creates a [Provider] that returns `true` when this [Provider] has a value
     * and `false` otherwise. The returned [Provider] always has a value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                // set at the configuration time. Everything that reads a mutated property value should be saved
                // as a fixed value.
                return
            }
            val propertyValue =
                if (isSystemPropertyLoaded(key)) {
                    // Loaded values of the system properties are loaded from gradle.properties but never mutated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top