Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for BAR (0.03 sec)

  1. src/net/http/client_test.go

    		want       bool
    	}{
    		{"User-Agent", "http://foo.com/", "http://bar.com/", true},
    		{"X-Foo", "http://foo.com/", "http://bar.com/", true},
    
    		// Sensitive headers:
    		{"cookie", "http://foo.com/", "http://bar.com/", false},
    		{"cookie2", "http://foo.com/", "http://bar.com/", false},
    		{"authorization", "http://foo.com/", "http://bar.com/", false},
    		{"authorization", "http://foo.com/", "https://foo.com/", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *
         * Examples of calls:
         *
         * - `|foo.Bar<...>|` - true
         * - `foo.|Bar|<...>` - true
         * - `foo.|B|ar<...>` - true
         * - `|foo|.Bar<...>` - false
         * - `foo.Bar|<...>|` - false
         */
        private val KtUserType.inSelection: Boolean
            get() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  9. pkg/apis/core/v1/defaults_test.go

    						ObjectMeta: metav1.ObjectMeta{
    							Labels: map[string]string{
    								"foo": "bar",
    							},
    						},
    					},
    				},
    			},
    			expectLabels:   true,
    			expectSelector: true,
    		},
    		{
    			rc: &v1.ReplicationController{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"bar": "foo",
    					},
    				},
    				Spec: v1.ReplicationControllerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: "bar",
    		},
    		Spec: corev1.ServiceSpec{
    			Ports: []corev1.ServicePort{{Port: 80, TargetPort: intstr.FromInt32(8080)}},
    		},
    	}
    	updatedSvc := corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: "bar",
    		},
    		Spec: corev1.ServiceSpec{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top