Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 666 for BAZ (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/cert_key_test.go

    		{
    			name:     "same",
    			lhs:      &certKeyContent{cert: []byte("foo"), key: []byte("baz")},
    			rhs:      &certKeyContent{cert: []byte("foo"), key: []byte("baz")},
    			expected: true,
    		},
    		{
    			name:     "different cert",
    			lhs:      &certKeyContent{cert: []byte("foo"), key: []byte("baz")},
    			rhs:      &certKeyContent{cert: []byte("bar"), key: []byte("baz")},
    			expected: false,
    		},
    		{
    			name:     "different key",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 13:27:45 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/go/printer/testdata/alignment.golden

    		Foo:		"foo",
    		Bar:		"bar",
    		Name:		"name",
    		LongName:	"longname",
    		Baz:		"baz",
    	}
    	y := MyStruct{
    		Foo:			"foo",
    		Bar:			"bar",
    		NameXX:			"name",
    		LongNameXXXXXXXXXXXXX:	"longname",
    		Baz:			"baz",
    	}
    	z := MyStruct{
    		Foo:			"foo",
    		Bar:			"bar",
    		Name:			"name",
    		LongNameXXXXXXXXXXXXX:	"longname",
    		Baz:			"baz",
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  5. src/go/printer/testdata/alignment.input

            Bar:      "bar",
            Name:     "name",
            LongName: "longname",
            Baz:      "baz",
        }
        y := MyStruct{
            Foo:                   "foo",
            Bar:                   "bar",
            NameXX:                "name",
            LongNameXXXXXXXXXXXXX: "longname",
            Baz: "baz",
        }
        z := MyStruct{
            Foo:  "foo",
            Bar:  "bar",
            Name: "name",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/config/host/name_test.go

    		{"long wildcard does not match short host", "*.foo.bar.baz", "baz", false},
    		{"long wildcard does not match short host - order doesn't matter", "baz", "*.foo.bar.baz", false},
    		{"long wildcard matches short wildcard", "*.foo.bar.baz", "*.baz", true},
    		{"long name matches short wildcard", "foo.bar.baz", "*.baz", true},
    	}
    
    	for idx, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_use_dot.txt

    cp ../../go.work.orig ../../go.work
    ! go work use $PWD .
    stderr '^go: already added "\./bar/baz" as "'$PWD'"$'
    cmp ../../go.work ../../go.work.orig
    
    
    -- go.mod --
    module example
    go 1.18
    -- go.work --
    go 1.18
    -- go.work.rel --
    go 1.18
    
    use ./bar/baz
    -- bar/baz/go.mod --
    module example/bar/baz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 21:19:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_gopath_order.txt

    mkdir $WORK/p1/src/foo $WORK/p2/src/baz
    mkdir $WORK/p2/pkg/${GOOS}_${GOARCH} $WORK/p1/src/bar
    cp foo.go $WORK/p1/src/foo/foo.go
    cp baz.go $WORK/p2/src/baz/baz.go
    cp foo.a $WORK/p2/pkg/${GOOS}_${GOARCH}/foo.a
    cp bar.go $WORK/p1/src/bar/bar.go
    
    go install -x bar
    
    # add in baz.a to the mix
    mkdir $WORK/p1/pkg/${GOOS}_${GOARCH}
    cp baz.a $WORK/p1/pkg/${GOOS}_${GOARCH}/baz.a
    env GOPATH=$WORK/p1${:}$WORK/p2
    go install -x bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 855 bytes
    - Viewed (0)
Back to top