Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for PropertyValue (0.35 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/DefaultJavaToolchainProvisioningServiceTest.groovy

        }
    
        ProviderFactory createProviderFactory(String propertyValue) {
            return Mock(ProviderFactory) {
                gradleProperty("org.gradle.java.installations.auto-download") >> Providers.ofNullable(propertyValue)
            }
        }
    
        private JavaToolchainResolver mockResolver(Optional<JavaToolchainDownload> download) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

            maybeSetGavProperties(GavProperty.PARENT_ARTIFACT_ID, getParentArtifactId());
        }
    
        private void maybeSetGavProperties(GavProperty gavProperty, String propertyValue) {
            for (String name : gavProperty.getNames()) {
                maybeSetEffectiveProperty(name, propertyValue);
            }
        }
    
        private void setPomProperties(Map<String, String> pomProperties) {
            if (!pomProperties.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

            @Override
            public void doValidate(String propertyName, Object value, PropertyValidationContext context) {
            }
    
            @Override
            public void validate(String propertyName, Supplier<Object> propertyValue, PropertyValidationContext context) {
            }
        },
        INPUT_FILE_VALIDATOR("file") {
            @Override
            public void doValidate(String propertyName, Object value, PropertyValidationContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    @Inject
                    abstract ProviderFactory getProviders()
    
                    @Nested
                    Object getNested() {
                        $propertyValue
                    }
    
                    @Input
                    String input = "Hello"
    
                    @OutputFile
                    File outputFile
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top