Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for BAR (0.05 sec)

  1. 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)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(url.queryParameterValues("bar")).isEqualTo(listOf(null as String?))
        assertThat(url.queryParameterValues("baz")).isEqualTo(listOf(null as String?))
      }
    
      @Test
      fun queryParametersWithEmptyValues() {
        val url = parse("http://host/?foo=&bar=&baz=")
        assertThat(url.querySize).isEqualTo(3)
        assertThat(url.queryParameterNames).containsExactlyInAnyOrder("foo", "bar", "baz")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def secondRule = new DefaultExcludeRule("bar", "baz")
            def thirdRule = new DefaultExcludeRule("baz", "qux")
    
            def rootConfig = conf().exclude(group: "baz", module: "qux")
            def parentConfig = conf().exclude(group: "bar", module: "baz").extendsFrom(rootConfig)
            def config = conf().exclude(group: "foo", module: "bar").extendsFrom(parentConfig)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// match (e.g. /foo/bar matches /foo/bar/baz, but does not match
    	// /foo/barbaz). If multiple matching paths exist in an Ingress spec, the
    	// longest matching path is given priority.
    	// Examples:
    	// - /foo/bar does not match requests to /foo/barbaz
    	// - /foo/bar matches request to /foo/bar and /foo/bar/baz
    	// - /foo and /foo/ both match requests to /foo and /foo/. If both paths are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    			synced:             true,
    			volumesInUse:       []v1.UniqueVolumeName{"bar"},
    			expectVolumesInUse: []v1.UniqueVolumeName{"bar"},
    		},
    		{
    			desc:               "not synced",
    			node:               withVolumesInUse.DeepCopy(),
    			synced:             false,
    			volumesInUse:       []v1.UniqueVolumeName{"bar"},
    			expectVolumesInUse: []v1.UniqueVolumeName{"foo"},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/MapsTest.java

        TreeMap<Derived, Integer> map = Maps.newTreeMap();
        assertEquals(Collections.emptyMap(), map);
        map.put(new Derived("foo"), 1);
        map.put(new Derived("bar"), 2);
        assertThat(map.keySet()).containsExactly(new Derived("bar"), new Derived("foo")).inOrder();
        assertThat(map.values()).containsExactly(2, 1).inOrder();
        assertNull(map.comparator());
      }
    
      public void testTreeMapNonGeneric() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_mounter_test.go

    		},
    		{
    			name:                  "no pod info -> keep existing volumeContext",
    			driver:                "no-info",
    			volumeContext:         map[string]string{"foo": "bar"},
    			expectedVolumeContext: map[string]string{"foo": "bar"},
    		},
    		{
    			name:                  "add pod info",
    			driver:                "info",
    			volumeContext:         nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    With the existing API, this example adds two tasks (`foo` and `bar`):
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle
    [source, groovy]
    ----
    tasks.create("foo") {
        tasks.create("bar")
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    tasks.create("foo") {
        tasks.create("bar")
    }
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    	tests := []struct {
    		name, escaped string
    	}{
    		{`simple_name`, `<a href="simple_name">simple_name</a>`},
    		{`"'<>&`, `<a href="%22%27%3C%3E&">&#34;&#39;&lt;&gt;&amp;</a>`},
    		{`?foo=bar#baz`, `<a href="%3Ffoo=bar%23baz">?foo=bar#baz</a>`},
    		{`<combo>?foo`, `<a href="%3Ccombo%3E%3Ffoo">&lt;combo&gt;?foo</a>`},
    		{`foo:bar`, `<a href="./foo:bar">foo:bar</a>`},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top