Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for PROP (0.03 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. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInjection.groovy

            return []
        }
    
        static List<SystemPropertyInjection> all(String prop, String value) {
            return [
                commandLine(prop, value),
                gradleProperties(prop, value),
                clientJvmArgs(prop, value)
            ]
        }
    
        static SystemPropertyInjection commandLine(String prop, String value) {
            return new SystemPropertyInjection() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InstrumentedTest.groovy

            System.setProperty("prop", "123")
    
            when:
            def result = Instrumented.getInteger("prop", "consumer")
    
            then:
            result == 123
            1 * listener.systemPropertyQueried("prop", "123", "consumer")
            0 * listener._
    
            System.setProperty("prop", "not an int")
    
            when:
            result = Instrumented.getInteger("prop", "consumer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

        }
    
        def "can register unnamed output files with property name"() {
            when:
            outputs.files("a", "b").withPropertyName("prop")
            then:
            outputs.files.files == files('a', "b")
            outputs.fileProperties*.propertyName == ['prop$1', 'prop$2']
            outputs.fileProperties*.propertyFiles*.files.flatten() == [file("a"), file("b")]
        }
    
        def "can register named output files"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithMethods.groovy

    package org.gradle.test
    
    class GroovyClassWithMethods {
    
        GroovyClassWithMethods(String prop) {
            this.prop = prop
        }
    
        /**
         * A method that returns String.
         */
        String stringMethod(String stringParam) {
            'value'
        }
    
        /**
         * A method that returns void.
         */
        void voidMethod() {
        }
    
        /**
         * A method that returns a reference type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 952 bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            def visited = [] as Set
    
            when:
            factory.open(tmpDir.testDirectory.file('foo'), "foo", [prop: 'value'], mode(Shared), null, null)
            factory.open(tmpDir.testDirectory.file('bar'), "bar", [prop: 'value'], mode(Shared), null, null)
            factory.open(tmpDir.testDirectory.file('baz'), "baz", [prop: 'value'], mode(Shared), null, null)
    
            and:
            factory.visitCaches(new CacheVisitor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilderTest.groovy

            def prop = doc.classProperties[0]
            prop.name == 'a'
            prop.additionalValues.size() == 3
            format(prop.additionalValues[0].title) == 'inherited'
            format(prop.additionalValues[0].value) == 'specific1'
            format(prop.additionalValues[1].title) == 'overridden'
            format(prop.additionalValues[1].value) == 'specific3'
            format(prop.additionalValues[2].title) == 'added'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.6K bytes
    - Viewed (0)
Back to top