Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 466 for BAR (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    			requestPath:    "/foo/bar/baz",
    			expectedStatus: http.StatusOK,
    		},
    		{
    			desc:              "allow if already proxied once",
    			requestPath:       "/api/bar/baz",
    			expectedStatus:    http.StatusOK,
    			peerproxiedHeader: "true",
    		},
    		{
    			desc:                 "allow if unsynced informers",
    			requestPath:          "/api/bar/baz",
    			expectedStatus:       http.StatusOK,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                        edge('com.acme.external:external:1.0', ':includedBuild', 'com.acme.external:external:2.0-SNAPSHOT') {
                            compositeSubstitute()
                            artifact(name: 'c-bar', fileName: 'c-bar.jar')
                        }
                    }
                }
            }
        }
    
        def "context travels to transitive dependencies via external components (Maven)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. src/net/http/cgi/host_test.go

    		"param-foo":             "bar",
    		"env-GATEWAY_INTERFACE": "CGI/1.1",
    		"env-HTTP_HOST":         "example.com:80",
    		"env-PATH_INFO":         "",
    		"env-QUERY_STRING":      "foo=bar&a=b",
    		"env-REMOTE_ADDR":       "1.2.3.4",
    		"env-REMOTE_HOST":       "1.2.3.4",
    		"env-REMOTE_PORT":       "1234",
    		"env-REQUEST_METHOD":    "GET",
    		"env-REQUEST_URI":       "/test.cgi?foo=bar&a=b",
    		"env-SCRIPT_FILENAME":   os.Args[0],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_test.go

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar_test.go

    		"InvalidDomainTest #1.",
    		"http://foo.bar.com",
    		[]string{
    			"a=1; domain=.yo.foo.bar.com",
    			"b=2; domain=.foo.com",
    			"c=3; domain=.bar.foo.com",
    			"d=4; domain=.foo.bar.com.net",
    			"e=5; domain=ar.com",
    			"f=6; domain=.",
    			"g=7; domain=/",
    			"h=8; domain=http://foo.bar.com",
    			"i=9; domain=..foo.bar.com",
    			"j=10; domain=..bar.com",
    			"k=11; domain=.foo.bar.com?blah",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

        assertTrue(set.isEmpty());
        set.add(new DerivedComparable("foo"), 2);
        set.add(new DerivedComparable("bar"), 3);
        assertThat(set)
            .containsExactly(
                new DerivedComparable("bar"),
                new DerivedComparable("bar"),
                new DerivedComparable("bar"),
                new DerivedComparable("foo"),
                new DerivedComparable("foo"))
            .inOrder();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. security/pkg/k8s/configutil_test.go

    		},
    		{
    			name: "changed",
    			args: args{
    				cm:   createConfigMap(namespaceName, configMapName, map[string]string{"foo": "bar"}),
    				data: map[string]string{"bar": "foo"},
    			},
    			want:       true,
    			expectedCM: createConfigMap(namespaceName, configMapName, map[string]string{"foo": "bar", "bar": "foo"}),
    		},
    		{
    			name: "changed",
    			args: args{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

            given:
            terseConsoleOutput(terse)
            javaLibrary()
            def foo = uncheckedModule("org", "foo", "1.0") {
                dependsOn("org", "bar", "1.0")
                dependsOn("org", "baz", "1.0")
            }
            def bar = uncheckedModule("org", "bar")
            def baz = uncheckedModule("org", "baz")
            buildFile << """
                dependencies {
                    implementation "org:foo:1.0"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

        assert foo.version == null
        foo.version { require '1.0' }
    
        def bar = deps.find { it.name == 'bar' }
        assert bar.version == '2.2'
        bar.version { require null }
    }
    configurations.compile.withDependencies { deps ->
        def bar = deps.find { it.name == 'bar' }
        assert bar.version == null
        bar.version { require '1.0' }
    }
    """
    
            then:
            resolvedGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pkg/controller/deployment/deployment_controller_test.go

    	_, ctx := ktesting.NewTestContext(t)
    
    	f := newFixture(t)
    
    	// Two Deployments with same labels.
    	d1 := newDeployment("foo", 1, nil, nil, nil, map[string]string{"foo": "bar"})
    	d2 := newDeployment("bar", 1, nil, nil, nil, map[string]string{"foo": "bar"})
    
    	// Two ReplicaSets that match labels for both Deployments,
    	// but have ControllerRefs to make ownership explicit.
    	rs1 := newReplicaSet(d1, "rs1", 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top