Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 553 for BAZ (0.58 sec)

  1. src/cmd/go/internal/modindex/testdata/ignore_non_source/baz.log

    Michael Matloob <******@****.***> 1664988840 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 05 18:59:21 UTC 2022
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/MethodUtilTest.java

            Method m = Baz.class.getMethod("rawMap", Map.class);
            assertThat(MethodUtil.getValueTypeOfMapFromReturnType(m), is(nullValue()));
    
            m = Baz.class.getMethod("genericMap", Map.class);
            assertThat(MethodUtil.getValueTypeOfMapFromReturnType(m), is(sameClass(Class.class)));
        }
    
        /**
         *
         */
        public interface Baz {
    
            /**
             * @param param
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/testing/match_test.go

    		{"/bar/baz", "", "TestFoo", "bar", true, true},
    		{"/bar/baz", "", "TestFoo", "bar/baz", true, false},
    		{"//baz", "", "TestFoo", "bar/baz", true, false},
    		{"//", "", "TestFoo", "bar/baz", true, false},
    		{"/bar/baz", "", "TestFoo/bar", "baz", true, false},
    		{"//foo", "", "TestFoo", "bar/baz", false, false},
    		{"/bar/baz", "", "TestFoo", "x", false, false},
    		{"/bar/baz", "", "TestBar", "x/bar/baz", false, false},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

                    - key: altKeyValue
                      bar:
                        baz: altValue
                `),
    			RootOldObject: mustUnstructured(`
                    foo:
                    - key: altKeyValue
                      bar:
                        baz: altValue
                    - key: keyValue
                      bar:
                        baz: value
                `),
    			Schema: mustSchema(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "top-level property has convention, nested is set" | setId("convention")                | setFooBar("baz")      | """id = convention\nbar = baz"""
            "nested property has convention and is set"        | setFooBar("convention")            | setFooBar("baz")      | """id = <no id>\nbar = baz"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/GroovyStackTraceSpecTest.groovy

        static class Bar {
            static void bar() {
                new Baz().baz = 42
            }
        }
    
        static abstract class SuperBaz {
            void setBaz(int baz) {
                boom
            }
    
            abstract String getBoom()
        }
    
        static class Baz extends SuperBaz {
            void setBaz(int baz) {
                super.setBaz(baz)
            }
    
            String getBoom() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/AbstractCollectionModelProjectionTest.groovy

            when:
            mutate {
                add 'foo'
                add 'bar'
                add 'baz'
            }
    
    
            then:
            def list = registry.realize(collectionPath, collectionType)
            list.toArray() == ['foo', 'bar', 'baz'] as String[]
            list.toArray(new String[0]) == ['foo', 'bar', 'baz'] as String[]
        }
    
        def "can check contents"() {
            when:
            mutate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_issue_56509.txt

    # when it is included
    
    env GOARCH=arm64
    env GOOS=linux
    go build ./baz
    
    env GOARCH=amd64
    env GOOS=linux
    ! go build ./baz
    
    -- go.mod --
    module example.com/foo
    
    go 1.20
    -- bar/bar.s --
    ;/
    -- baz/baz.go --
    package bar
    -- baz/baz_amd64.s --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 21:02:24 UTC 2022
    - 740 bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/UnixStartScriptGeneratorTest.groovy

            given:
            JavaAppStartScriptGenerationDetails details = createScriptGenerationDetails(['-Dfoo=bar baz', '-Xint'], 'bin')
            Writer destination = new StringWriter()
    
            when:
            generator.generateScript(details, destination)
    
            then:
            destination.toString().contains(/DEFAULT_JVM_OPTS='"-Dfoo=bar baz" "-Xint"'/)
        }
    
        def "defaultJvmOpts is expanded properly in unix script -- double quotes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_use.txt

    go 1.18
    
    use (
    	foo
    	foo/bar // doesn't exist
    )
    -- go.want_work_r --
    go 1.18
    
    use (
    	./foo
    	./foo/bar/baz
    )
    -- go.want_work_other --
    go 1.18
    
    use (
    	./foo
    	./foo/bar/baz
    	./other
    )
    -- foo/go.mod --
    module foo
    -- foo/bar/baz/go.mod --
    module baz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 504 bytes
    - Viewed (0)
Back to top