Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 418 for prop4 (0.07 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/properties/InspectionSchemeFactoryTest.groovy

            return handler
        }
    }
    
    class AnnotatedBean {
        @Thing1
        String prop1
    
        @Thing2
        String prop2
    
        @Inject
        String prop3
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @interface Thing1 {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @interface Thing2 {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @interface IgnoredThing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/AbstractPropertiesCommandLineConverterTest.groovy

            expect:
            convert("-Aa", "-Ab=") == [a: "", b: ""]
        }
    
        def "parses properties arg containing equals"() {
            expect:
            convert("-Aprop=a b=c", "-Aprop2==", "-Aprop3=ab=") == [prop: 'a b=c', prop2: '=', prop3: 'ab=']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratedManagedStateTest.groovy

            expect:
            bean.prop.toString() == "property 'prop'"
            bean.prop.getOrNull() == defaultValue
            bean.prop.set(newValue)
            bean.prop.get() == newValue
    
            beanWithDisplayName.prop.toString() == "<display-name> property 'prop'"
    
            where:
            type                               | defaultValue | newValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

            PropertyDoc deprecatedProp = propertyDoc('deprecatedProperty', id: 'prop1', description: 'prop1 description', comment: 'prop1 comment', type: 'org.gradle.Type', deprecated: true)
            PropertyDoc incubatingProp = propertyDoc('incubatingProperty', id: 'prop2', description: 'prop2 description', comment: 'prop2 comment', type: 'org.gradle.Type', incubating: true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

            output.contains 'prop theFloat     : 0.7182818'
            output.contains 'prop theint       : 3'
            output.contains 'prop theInteger   : 8'
            output.contains 'prop theLong      : 4294967294'
            output.contains 'prop thelong      : 6442450941'
            output.contains 'prop theshort     : 21'
            output.contains 'prop theShort     : 55'
            output.contains 'prop thebyte      : 55'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

                println('prop1=' + providers.systemProperty('prop1').get())
                task show {
                    doLast {
                        println('prop1=' + System.getProperty('prop1'))
                    }
                }
            """
            if (!GradleContextualExecuter.configCache) {
                buildFile << """
                    println('prop2=' + System.getProperty('prop2'))
                """
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/prop-prov-1.png

    prop-prov-1.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 00:13:54 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

        <groupId>\${groupId.prop}</groupId>
        <artifactId>\${artifactId.prop}</artifactId>
        <version>\${version.prop}</version>
        <name>Test Artifact One</name>
        <description>The first test artifact</description>
        <properties>
            <some.prop1>test1</some.prop1>
            <some.prop2>test2</some.prop2>
            <groupId.prop>group-one</groupId.prop>
            <artifactId.prop>artifact-one</artifactId.prop>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/node_matchers.cc

        absl::Span<const NodeMatcherProperties> props) {
      NodeMatcher* matcher = new NodeMatcher();
      for (const NodeMatcherProperties& prop : props) {
        if (prop.name()) {
          DCHECK(!matcher->name);
          matcher->name = prop.name();
        }
    
        if (prop.op()) {
          DCHECK(!matcher->op);
          matcher->op = prop.op();
        }
    
        if (prop.constant_value()) {
          DCHECK(!matcher->constant_value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/util/ConfigureUtilTest.groovy

            def prop = "prop"
            def foo = "foo"
    
            when:
            ConfigureUtil.configureByMap(["$prop": 'value'], obj, ["$foo"])
    
            then:
            def e = thrown(IncompleteInputException)
            e.missingKeys.contains("foo")
    
            when:
            ConfigureUtil.configureByMap(["$prop": 'value'], obj, ["$prop"])
    
            then:
            assert obj.prop == 'value'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top