Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 666 for BAZ (0.07 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/go/printer/testdata/slow.input

    22: &Bar{},
    13: &Baz{ whatever: "this is nuts" }}}},
            bang: &Bar{foo: []*Foo{
    &Foo{bar: &Bar{ baz: &Baz{
    entries: map[int]interface{}{
    61: &Foo{},
    71: &Bar{},
    11: &Baz{ whatever: "no, it's Go" }}}},
            bang: &Bar{foo: []*Foo{
    &Foo{bar: &Bar{ baz: &Baz{
    entries: map[int]interface{}{
    0: &Foo{},
    -2: &Bar{},
    -11: &Baz{ whatever: "we need to go deeper" }}}},
            bang: &Bar{foo: []*Foo{
    &Foo{bar: &Bar{ baz: &Baz{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.9K bytes
    - Viewed (0)
  3. tests/test_response_model_include_exclude.py

            baz="simple_include model2 baz",
        )
    
    
    @app.get(
        "/simple_include_dict",
        response_model=Model2,
        response_model_include={"baz": ..., "ref": {"foo"}},
    )
    def simple_include_dict():
        return {
            "ref": {
                "foo": "simple_include_dict model foo",
                "bar": "simple_include_dict model bar",
            },
            "baz": "simple_include_dict model2 baz",
        }
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jul 19 19:14:58 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. src/go/printer/testdata/slow.golden

    	bar	*Bar
    	bang	*Bar
    }
    
    type Bar struct {
    	baz	*Baz
    	foo	[]*Foo
    }
    
    type Baz struct {
    	entries		map[int]interface{}
    	whatever	string
    }
    
    func newFoo() *Foo {
    	return &Foo{bar: &Bar{baz: &Baz{
    		entries: map[int]interface{}{
    			42:	&Foo{},
    			21:	&Bar{},
    			11:	&Baz{whatever: "it's just a test"}}}},
    		bang: &Bar{foo: []*Foo{
    			&Foo{bar: &Bar{baz: &Baz{
    				entries: map[int]interface{}{
    					43:	&Foo{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. test/fixedbugs/issue7863.go

    	return int64(b)
    }
    
    type Baz int32
    
    func (b Baz) F() int64 {
    	return int64(b)
    }
    
    func main() {
    	foo := Foo(123)
    	f := foo.F
    	if foo.F() != f() {
    		bug()
    		fmt.Println("foo.F", foo.F(), f())
    	}
    	bar := Bar(123)
    	f = bar.F
    	if bar.F() != f() {
    		bug()
    		fmt.Println("bar.F", bar.F(), f()) // duh!
    	}
    
    	baz := Baz(123)
    	f = baz.F
    	if baz.F() != f() {
    		bug()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 790 bytes
    - Viewed (0)
  10. 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)
Back to top