Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 115 for BAR (0.04 sec)

  1. pilot/pkg/model/push_context_test.go

    		},
    		{
    			name:        "service whose namespace is bar has exportTo map with private",
    			pushContext: &PushContext{},
    			service: &Service{
    				Attributes: ServiceAttributes{
    					Namespace: "bar",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    			expect: false,
    		},
    		{
    			name:        "service whose namespace is bar has exportTo map with public",
    			pushContext: &PushContext{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    func TestReplicationController(t *testing.T) {
    	// The budget in this test matches foo=bar, but the RC and its pods match
    	// {foo=bar, baz=quux}.  Later, when we add a rogue pod with only a foo=bar
    	// label, it will match the budget but have no controllers, which should
    	// trigger the controller to set PodDisruptionAllowed to false.
    	labels := map[string]string{
    		"foo": "bar",
    		"baz": "quux",
    	}
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    				DriverName: "kubernetes.io/foo",
    				Parameters: map[string]string{
    					"foo": "bar",
    				},
    			},
    			shouldSucceed: false,
    		},
    		"invalid parameter update which remove a item": {
    			oldClass: &storage.VolumeAttributesClass{
    				DriverName: "kubernetes.io/foo",
    				Parameters: map[string]string{
    					"foo": "bar",
    				},
    			},
    			newClass: &storage.VolumeAttributesClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    	r.Read(buf)
    	if string(buf) != "foo" {
    		t.Errorf("buf = %q; want foo", buf)
    	}
    
    	r.Reset(strings.NewReader("bar bar"))
    	checkAll(r, "bar bar")
    
    	*r = Reader{} // zero out the Reader
    	r.Reset(strings.NewReader("bar bar"))
    	checkAll(r, "bar bar")
    
    	// Wrap a reader and then Reset to that reader.
    	r.Reset(strings.NewReader("recur"))
    	r2 := NewReader(r)
    	checkAll(r2, "recur")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            def bar = mavenHttpRepo.module("org", "bar", "1.0").publish()
            buildFile << """
                apply plugin: 'java-library'
    
                dependencies {
                    implementation libs.foo.bar.baz.a
                    implementation libs.foo.bar
                }
            """
    
            when:
            a.pom.expectGet()
            bar.pom.expectGet()
            a.artifact.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  6. tests/integration/security/authz_test.go

    						},
    						// Test matches for `/foo/{*}/bar/{**}`
    						{
    							path:  "/foo/buzz/bar/bat.txt",
    							allow: true,
    						},
    						{
    							path:  "/foo/buzz/bar/bat.temp.txt",
    							allow: true,
    						},
    						{
    							path:  "/foo/buzz/bar/bat/fuzz.txt",
    							allow: true,
    						},
    						{
    							path:  "/foo/bar/bat.txt",
    							allow: false,
    						},
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/SetsTest.java

        set.add(new Derived("foo"));
        set.add(new Derived("bar"));
        assertThat(set).containsExactly(new Derived("bar"), new Derived("foo")).inOrder();
      }
    
      public void testNewTreeSetEmptyNonGeneric() {
        TreeSet<LegacyComparable> set = Sets.newTreeSet();
        assertTrue(set.isEmpty());
        set.add(new LegacyComparable("foo"));
        set.add(new LegacyComparable("bar"));
        assertThat(set)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal_test.go

    }, {
    	desc: "end tag without start tag",
    	toks: []Token{
    		EndElement{Name{"foo", "bar"}},
    	},
    	err: "xml: end tag </bar> without start tag",
    }, {
    	desc: "mismatching end tag local name",
    	toks: []Token{
    		StartElement{Name{"", "foo"}, nil},
    		EndElement{Name{"", "bar"}},
    	},
    	err:  "xml: end tag </bar> does not match start tag <foo>",
    	want: `<foo>`,
    }, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_utils_test.go

    			changed: true,
    		},
    		{
    			orig:    []string{"v1/pod/foo"},
    			new:     []string{"v1/pod/foo"},
    			changed: false,
    		},
    		{
    			orig:    []string{"v1/pod/foo"},
    			new:     []string{"v1/pod/bar"},
    			changed: true,
    		},
    		{
    			orig:    []string{"v1/pod/foo", "v1/set/bob"},
    			new:     []string{"v1/pod/foo", "v1/set/alice"},
    			changed: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        mockWebServer: MockWebServer,
      ) {
        setUp(protocol, mockWebServer)
        val pushPromise =
          PushPromise(
            "GET",
            "/foo/bar",
            headersOf("foo", "bar"),
            MockResponse(body = "bar"),
          )
        server.enqueue(
          MockResponse.Builder()
            .body("ABCDE")
            .addPush(pushPromise)
            .build(),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top