Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 293 for PROP (0.09 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    Bryan C. Mills <******@****.***> 1551453150 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

            def prop = details.getProperty('prop')
            prop.getters.size() == 2
            prop.setters.size() == 3
        }
    
        def "extracts properties from super class"() {
            expect:
            def details = ClassInspector.inspect(SubClass)
    
            details.propertyNames == ['class', 'metaClass', 'prop', 'readOnly', 'writeOnly', 'other'] as Set
    
            def prop = details.getProperty('prop')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

            given:
            buildFile """
    
    def prop = project.objects.listProperty(String)
    
    task thing {
        inputs.property("prop", prop)
        prop.set(["value 1"])
        doLast {
            prop.set(["ignored"])
            println "prop = " + prop.get()
        }
    }
    """
    
            when:
            fails("thing")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java

            assertActivation(false, profile, newContext(null, newProperties("prop", "value")));
    
            assertActivation(true, profile, newContext(null, newProperties("prop", "")));
    
            assertActivation(true, profile, newContext(null, newProperties("other", "value")));
        }
    
        @Test
        void testWithValue_UserProperty() throws Exception {
            Profile profile = newProfile("prop", "value");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            pack output,
                prop("out1", FILE, null),
                prop("out2", DIRECTORY, null)
    
            then:
            noExceptionThrown()
    
            when:
            def input = new ByteArrayInputStream(output.toByteArray())
            unpack input,
                prop("out1", FILE, null),
                prop("out2", DIRECTORY, null)
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

            given:
            buildFile << """
    
    def prop = project.objects.mapProperty(String, String)
    prop.set((Map)null)
    
    task thing {
        inputs.property("prop", prop).optional(true)
        doLast {
            println "prop = " + prop.getOrNull()
        }
    }
    """
    
            when:
            run("thing")
    
            then:
            output.contains("prop = null")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

                </activation>
                <properties>
                    <groupId.prop>groupB</groupId.prop>
                    <artifactId.prop>artifactB</artifactId.prop>
                    <version.prop>1.4</version.prop>
                </properties>
            </profile>
        </profiles>
    </project>
    """
    
            def transitiveModule = mavenHttpRepo.module("groupB", "artifactB", "1.4").publish()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

                three.prop.disallowUnsafeRead()
                three.prop = two.prop.map { "[\$it]" }
                two.prop = one.prop.orElse("unknown")
    
                gradle.taskGraph.whenReady {
                    println("three = " + three.prop.get())
                    println("two = " + two.prop.get())
                    println("one = " + one.prop.orNull)
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FileSystemPropertySpec.groovy

            def file = tmpDir.file("thing")
            def prop = propertyWithNoValue()
            prop.set(file)
    
            expect:
            prop.get().asFile == file
        }
    
        def "can set value using relative file"() {
            given:
            def file = new File("thing")
            def prop = propertyWithNoValue()
            prop.set(file)
    
            expect:
            prop.get().asFile == tmpDir.file("thing")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top