Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for foo016 (0.1 sec)

  1. pkg/printers/internalversion/printers_test.go

    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:   "foo10",
    					Labels: map[string]string{"node-role.kubernetes.io/master": "", "node-role.kubernetes.io/control-plane": "", "node-role.kubernetes.io/proxy": "", "kubernetes.io/role": "node"},
    				},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo10", "Unknown", "control-plane,master,node,proxy", "<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. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            val instance = createFromPaths(listOf("foo*/*bar*/*baz/*.xml"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/bar/baz/.xml")))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo1/2bar3/4baz/abc.xml")))
        }
    
        @Test
        fun `recognizes double-asterisk wildcards across path segments`() {
            val instance = createFromPaths(listOf("foo/**/bar/**"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Containers: []v1.Container{
    				{
    					Name:  "foo1",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo2",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			ContainerStatuses: []v1.ContainerStatus{
    				{
    					ContainerID: "://id1",
    					Name:        "foo1",
    					Image:       "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	preset := []struct {
    		key       string
    		obj       *example.Pod
    		storedObj *example.Pod
    	}{
    		{
    			key: computePodKey(foo1),
    			obj: foo1,
    		},
    		{
    			key: computePodKey(bar2),
    			obj: bar2,
    		},
    		{
    			key: computePodKey(foo3),
    			obj: foo3,
    		},
    		{
    			key: computePodKey(foo4),
    			obj: foo4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. 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"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    		oldStatus *v1.PodStatus
    	}{
    		{
    			name: "custom resource in ResourcesAllocated, resize should be null",
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					UID:       "1234560",
    					Name:      "foo0",
    					Namespace: "bar0",
    				},
    				Spec: v1.PodSpec{
    					NodeName: "machine",
    					Containers: []v1.Container{
    						{
    							Name:      testContainerName,
    							Image:     "img",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    	}{
    		// pods without labels don't match any job
    		{
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{Name: "basic"},
    			},
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: metav1.NamespaceAll},
    			},
    			expectedName: "",
    		},
    		// matching labels, different namespace
    		{
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top