Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 113 for foo6 (0.05 sec)

  1. okhttp/src/test/java/okhttp3/CookieTest.kt

        ).isFalse()
      }
    
      @Test fun defaultPath() {
        assertThat(parse("http://example.com/foo/bar".toHttpUrl(), "a=b")!!.path).isEqualTo("/foo")
        assertThat(parse("http://example.com/foo/".toHttpUrl(), "a=b")!!.path).isEqualTo("/foo")
        assertThat(parse("http://example.com/foo".toHttpUrl(), "a=b")!!.path).isEqualTo("/")
        assertThat(parse("http://example.com/".toHttpUrl(), "a=b")!!.path).isEqualTo("/")
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	// podA will be stored with name foo12345
    	podA := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "test"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    	// podB will generate the same name as podA "foo1" in the first try
    	podB := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{GenerateName: "foo", Namespace: "test"},
    		Spec:       example.PodSpec{NodeName: "machine2"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// major version, then minor version. An example sorted list of versions:
    	// v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
    	// +listType=atomic
    	Versions []CustomResourceDefinitionVersion `json:"versions" protobuf:"bytes,7,rep,name=versions"`
    
    	// conversion defines conversion settings for the CRD.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// major version, then minor version. An example sorted list of versions:
    	// v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
    	// +optional
    	// +listType=atomic
    	Versions []CustomResourceDefinitionVersion `json:"versions,omitempty" protobuf:"bytes,7,rep,name=versions"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    		},
    		{
    			orig:    []string{"v1/pod/foo", "v1/set/bob"},
    			new:     []string{"v1/pod/foo", "v1/set/bob"},
    			changed: false,
    		},
    		{
    			orig:    []string{"v1/pod/foo", "v1/set/bob"},
    			new:     []string{"v1/pod/foo", "v1/set/bob", "v1/set/bob"},
    			changed: true,
    		},
    		{
    			orig:    []string{"v1/pod/foo", "v1/set/bob"},
    			new:     []string{"v1/set/bob", "v1/pod/foo"},
    			changed: false,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: metav1.NamespaceAll},
    			},
    			expectedName: "",
    		},
    		// matching labels, different namespace
    		{
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec: batch.JobSpec{
    					Selector: &metav1.LabelSelector{
    						MatchLabels: map[string]string{"foo": "bar"},
    					},
    				},
    			},
    			pod: &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // e.g. when validation checks if a specific attribute `foo` under a map `testMap`, the fieldPath could be set to `.testMap.foo`
      // If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList`
      // It does not support list numeric index.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // e.g. when validation checks if a specific attribute `foo` under a map `testMap`, the fieldPath could be set to `.testMap.foo`
      // If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList`
      // It does not support list numeric index.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar_test.go

    				Name:      "bar",
    				Namespace: "foo",
    			},
    		},
    		{
    			Hostname: "barprime",
    			Ports:    port8000,
    			Attributes: ServiceAttributes{
    				Name:      "barprime",
    				Namespace: "foo",
    			},
    		},
    		{
    			Hostname: "foo",
    			Ports:    allPorts,
    			Attributes: ServiceAttributes{
    				Name:      "foo",
    				Namespace: "foo",
    			},
    		},
    	}
    
    	services8 = []*Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    An error on not-declared:1 indicates that foo is undeclared.
    An error on not-type:1 indicates that foo is not a type (if declared at all, it is an identifier).
    An error on not-int-const:1 indicates that foo is not an integer constant.
    An error on not-num-const:1 indicates that foo is not a number constant.
    An error on not-str-lit:1 indicates that foo is not a string literal.
    An error on not-signed-int-const:1 indicates that foo is not a signed integer constant.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top