Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 614 for BAZ (0.22 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. test/typeparam/issue47708.go

    	Bar(FooType[T]) string
    }
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    // type Baz[T any] T
    // func (l Baz[T]) Foo(v BarType[T]) string {
    // 	return v.Bar(l)
    // }
    // type Bob[T any] T
    // func (l Bob[T]) Bar(v FooType[T]) string {
    // 	if v,ok := v.(Baz[T]);ok{
    // 		return fmt.Sprintf("%v%v",v,l)
    // 	}
    // 	return ""
    // }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 934 bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ElementSourceSpec.groovy

            source.add("bar")
            source.add("baz")
            source.addPending(provider("fizz"))
            source.addPendingCollection(setProvider("fuzz", "bazz"))
    
            then:
            source.iteratorNoFlush().collect() == iterationOrder("bar", "baz")
    
            and:
            source.iterator().collect() == iterationOrder("foo", "bar", "baz", "fizz", "fuzz", "bazz")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSourceTest.groovy

            and:
            source.iterator().collect { it.toString() } == iterationOrder("foo", "bar", "baz", "fizz", "fuzz", "bazz")
        }
    
        def "can remove elements using iteratorNoFlush"() {
            source.add("foo")
            source.addPending(provider("bar"))
            source.addPendingCollection(setProvider("baz", "fooz"))
            source.add("fizz")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. tests/test_serialize_response_model.py

            Item(aliased_name="bar", price=1.0),
            Item(aliased_name="baz", price=2.0, owner_ids=[1, 2, 3]),
        ]
    
    
    @app.get("/items/validdict", response_model=Dict[str, Item])
    def get_validdict():
        return {
            "k1": Item(aliased_name="foo"),
            "k2": Item(aliased_name="bar", price=1.0),
            "k3": Item(aliased_name="baz", price=2.0, owner_ids=[1, 2, 3]),
        }
    
    
    @app.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top