Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for foo4 (0.06 sec)

  1. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo4"},
    				Status:     api.NodeStatus{Conditions: []api.NodeCondition{{Type: api.NodeReady, Status: api.ConditionFalse}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo4", "NotReady", "<none>", "<unknown>", ""}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    		if err != nil {
    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    		ds1 := newDaemonSet("foo1")
    		ds1.Spec.UpdateStrategy = *strategy
    		ds2 := newDaemonSet("foo2")
    		ds2.Spec.UpdateStrategy = *strategy
    		ds3 := newDaemonSet("foo3")
    		ds3.Spec.UpdateStrategy = *strategy
    		ds3.Spec.Selector.MatchLabels = simpleDaemonSetLabel2
    		err = manager.dsStore.Add(ds1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    kind: Simple
    metadata:
      name: id
      creationTimestamp: null
    other: foo
    other: bar
    unknown: baz`)
    
    		invalidMergePatch = []byte(`{"labels":{"foo":"bar"}, "unknown": "foo", "other": "foo", "other": "bar"}`)
    		invalidJSONPatch  = []byte(`
    [
    	{"op": "add", "path": "/unknown", "value": "foo"},
    	{"op": "add", "path": "/other", "value": "foo"},
    	{"op": "add", "path": "/other", "value": "bar"}
    	]
    	`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/crypto/x509/x509_test.go

    func TestMatchIP(t *testing.T) {
    	// Check that pattern matching is working.
    	c := &Certificate{
    		DNSNames: []string{"*.foo.bar.baz"},
    		Subject: pkix.Name{
    			CommonName: "*.foo.bar.baz",
    		},
    	}
    	err := c.VerifyHostname("quux.foo.bar.baz")
    	if err != nil {
    		t.Fatalf("VerifyHostname(quux.foo.bar.baz): %v", err)
    	}
    
    	// But check that if we change it to be matching against an IP address,
    	// it is rejected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    
    # Entries added by HostAliases.
    123.45.67.89	foo	bar	baz
    `,
    		},
    		{
    			hostsFileName: "hosts_test_file2_with_host_aliases",
    			hostAliases: []v1.HostAlias{
    				{IP: "123.45.67.89", Hostnames: []string{"foo", "bar", "baz"}},
    				{IP: "456.78.90.123", Hostnames: []string{"park", "doo", "boo"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    			"Content-Length: 0\r\n" +
    			"Foo : bar\r\n\r\n"))
    		buf.Flush()
    		conn.Close()
    	}))
    	res, err := cst.c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer res.Body.Close()
    	if v := res.Header.Get("Foo"); v != "" {
    		t.Errorf(`unexpected "Foo" header: %q`, v)
    	}
    	if v := res.Header.Get("Foo "); v != "bar" {
    		t.Errorf(`bad "Foo " header value: %q, want %q`, v, "bar")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
                "type": "string"
              },
              "name": {
                "default": "",
                "description": "name is the plural name of the resource.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    		makeTestService("somewhere-else", "external-name", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeExternalName
    			svc.Spec.ClusterIP = "172.30.55.4" // Should be ignored
    			svc.Spec.ExternalName = "foo2.bar.com"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blah", "UDP", 1235, 5321, 0)
    		}),
    	)
    
    	result := fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top