Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for PropertyValue (0.17 sec)

  1. 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)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/AbstractTaskInputsAndOutputsTest.groovy

    import org.gradle.internal.fingerprint.LineEndingSensitivity
    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.DefaultTypeMetadataStore
    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                ExpressionValue propertyValue = expression.propertyValue;
                if (expression.assignOperator) {
                    if (propertyValue.isBooleanType()) {
                        return booleanPropertyNameFor(propertyName) + " = " + propertyValue.with(this);
                    }
                    return propertyName + " = " + propertyValue.with(this);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

            "additionalProperties": true,
            "patternProperties": {
              "patternPropertiesKey": {}
            },
            "dependencies": {
              "dependenciesKey": [
                "\u003cno json tag\u003e PropertyValue"
              ]
            },
            "additionalItems": true,
            "definitions": {
              "definitionsKey": {}
            },
            "externalDocs": {
              "description": "descriptionValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/plugins/AddSoftwareTypesAsExtensionsPluginTarget.java

    import org.gradle.configuration.ConfigurationTargetIdentifier;
    import org.gradle.internal.Cast;
    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.reflect.DefaultTypeValidationContext;
    import org.gradle.internal.reflect.validation.TypeValidationProblemRenderer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputPropertyAnnotationHandler.java

    import org.gradle.api.problems.Severity;
    import org.gradle.api.problems.internal.GradleCoreProblemGroup;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Optional;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    import org.gradle.internal.reflect.JavaReflectionUtil;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplierTest.groovy

            expectedPaths
        }
    
        InstallationSupplier createSupplier(String propertyValue, String userhome) {
            SystemProperties.instance.withSystemProperty("user.home", userhome) {
                new MavenToolchainsInstallationSupplier(createProviderFactory(propertyValue), createFileResolver())
            }
        }
    
        private FileResolver createFileResolver() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top