Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,460 for BAR (0.03 sec)

  1. src/cmd/go/testdata/script/mod_get_none.txt

    env GO111MODULE=on
    
    go mod init example.com/foo
    
    # 'go get bar@none' should be a no-op if module bar is not active.
    go get example.com/bar@none
    go list -m all
    ! stdout example.com/bar
    
    go get example.com/bar@none
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 253 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/taint_test.go

    			taint: &Taint{
    				Key:    "foo",
    				Value:  "bar",
    				Effect: TaintEffectNoSchedule,
    			},
    			taintToMatch: Taint{
    				Key:    "foo",
    				Value:  "bar",
    				Effect: TaintEffectNoSchedule,
    			},
    			expectMatch: true,
    		},
    		{
    			description: "two taints with the same key,effect but different value should match",
    			taint: &Taint{
    				Key:    "foo",
    				Value:  "bar",
    				Effect: TaintEffectNoSchedule,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 16 13:06:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authorization/path/path_test.go

    		{"foo slash star", []string{"/foo/*"}, []string{"/foo/", "/foo/bar/bla"}, nil, []string{"/", "", "/foo", "/bar", "/fooooo"}, false},
    		{"foo bar", []string{"/foo", "/bar"}, []string{"/foo", "/bar"}, nil, []string{"/", "", "/foo/", "/bar/", "/fooooo"}, false},
    		{"foo star", []string{"/foo*"}, []string{"/foo", "/foooo"}, nil, []string{"/", "", "/fo", "/bar"}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/testdata/kube-apiserver/base.template

    readonly KUBE_API_SERVER_AUDIT_LOG_PATH=${KUBE_HOME}/kube-apiserver-audit.log
    readonly CLOUD_CONFIG_OPT=--cloud-config=/etc/gce.conf
    readonly CA_CERT_BUNDLE_PATH=/foo/bar
    readonly APISERVER_SERVER_CERT_PATH=/foo/bar
    readonly APISERVER_SERVER_KEY_PATH=/foo/bar
    readonly APISERVER_CLIENT_CERT_PATH=/foo/bar
    readonly CLOUD_CONFIG_MOUNT="{\"name\": \"cloudconfigmount\",\"mountPath\": \"/etc/gce.conf\", \"readOnly\": true},"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_gopath_order.txt

    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
    env GOPATH=$WORK/p2${:}$WORK/p1
    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)
  6. src/net/textproto/header_test.go

    	{"foo-bar_baz", "Foo-Bar_baz"},
    	{"foo-bar$baz", "Foo-Bar$baz"},
    	{"foo-bar~baz", "Foo-Bar~baz"},
    	{"foo-bar*baz", "Foo-Bar*baz"},
    
    	// Non-ASCII or anything with spaces or non-token chars is unchanged:
    	{"üser-agenT", "üser-agenT"},
    	{"a B", "a B"},
    
    	// This caused a panic due to mishandling of a space:
    	{"C Ontent-Transfer-Encoding", "C Ontent-Transfer-Encoding"},
    	{"foo bar", "foo bar"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 17 18:21:01 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IsolatingFilerTest.groovy

        }
    
        def "can have multiple originating elements coming from the same type"() {
            when:
            filer.createSourceFile("Foo", methodInside("Bar"), methodInside("Bar"))
            filer.createResource(StandardLocation.SOURCE_OUTPUT, "", "foo.txt", methodInside("Bar"), methodInside("Bar"))
    
            then:
            !result.fullRebuildCause
        }
    
        def "packages are valid originating elements"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/internal/poll/writev_test.go

    	}{
    		{
    			in:      [][]byte{[]byte("foo"), []byte("bar")},
    			consume: 0,
    			want:    [][]byte{[]byte("foo"), []byte("bar")},
    		},
    		{
    			in:      [][]byte{[]byte("foo"), []byte("bar")},
    			consume: 2,
    			want:    [][]byte{[]byte("o"), []byte("bar")},
    		},
    		{
    			in:      [][]byte{[]byte("foo"), []byte("bar")},
    			consume: 3,
    			want:    [][]byte{[]byte("bar")},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 18:36:28 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/vendor_internal.txt

    go build ./vendor/foo.com/internal/bar/a
    
    -- go.mod --
    module example.com/x
    go 1.19
    
    require "foo.com/internal/bar" v1.0.0
    -- vendor/modules.txt --
    # foo.com/internal/bar v1.0.0
    ## explicit
    foo.com/internal/bar/a
    -- vendor/foo.com/internal/bar/a/a.go --
    package a
    import _ "foo.com/internal/bar/b"
    -- vendor/foo.com/internal/bar/b/b.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 18:18:22 UTC 2022
    - 348 bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/NullabilityChangesTest.kt

                        @Nullable public String foo(String bar) { return bar; }
                    }
                """,
                v2 = """
                    public class Source {
                        public final String finalField = null;
                        public String foo(String bar) { return bar; }
                    }
                """
            ) {
                assertHasNoError()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.1K bytes
    - Viewed (0)
Back to top