Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for foo_3 (0.1 sec)

  1. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo3"},
    				Status: api.NodeStatus{Conditions: []api.NodeCondition{
    					{Type: api.NodeReady, Status: api.ConditionTrue},
    					{Type: api.NodeReady, Status: api.ConditionTrue}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo3", "Ready", "<none>", "<unknown>", ""}}},
    		},
    		{
    			node: api.Node{
    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. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		storedObj *example.Pod
    	}{
    		{
    			key: computePodKey(foo1),
    			obj: foo1,
    		},
    		{
    			key: computePodKey(bar2),
    			obj: bar2,
    		},
    		{
    			key: computePodKey(foo3),
    			obj: foo3,
    		},
    		{
    			key: computePodKey(foo4),
    			obj: foo4,
    		},
    	}
    
    	var currentRV string
    	for i, ps := range preset {
    		preset[i].storedObj = &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys_test.go

    		}
    	}
    }
    
    func TestWalkSkipAll(t *testing.T) {
    	initOverlay(t, `
    {
    	"Replace": {
    		"dir/subdir1/foo1": "dummy.txt",
    		"dir/subdir1/foo2": "dummy.txt",
    		"dir/subdir1/foo3": "dummy.txt",
    		"dir/subdir2/foo4": "dummy.txt",
    		"dir/zzlast": "dummy.txt"
    	}
    }
    -- dummy.txt --
    `)
    
    	var seen []string
    	Walk("dir", func(path string, info fs.FileInfo, err error) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set_test.go

    					Spec: apps.ReplicaSetSpec{
    						Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
    					},
    				},
    			},
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo3", Namespace: "ns", Labels: map[string]string{"foo": "bar"}}},
    			outRSName: "bar",
    		},
    	}
    	for _, c := range testCases {
    		for _, r := range c.inRSs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller_test.go

    		}
    		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)
    		if err != nil {
    			t.Fatal(err)
    		}
    		err = manager.dsStore.Add(ds2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    								Operator: metav1.LabelSelectorOpIn,
    								Values:   []string{"bar"},
    							},
    						},
    					},
    				},
    			},
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "foo3",
    					Namespace: "ns",
    					Labels:    map[string]string{"foo": "bar"},
    				},
    			},
    			expectedName: "bar",
    		},
    	}
    	for _, tc := range testCases {
    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. pkg/apis/core/validation/validation_test.go

    				Name:   "foo2",
    				Labels: map[string]string{"foo": "baz"},
    			},
    		}, true},
    		{core.Namespace{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "foo3",
    			},
    		}, core.Namespace{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:   "foo3",
    				Labels: map[string]string{"foo": "baz"},
    			},
    		}, true},
    		{core.Namespace{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:   "foo4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top