Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fakeContainerName (0.22 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    						UID:  "fakePodUID",
    					},
    					Spec: v1.PodSpec{
    						Containers: []v1.Container{
    							{
    								Name: "fakeContainerName",
    							},
    						},
    					},
    				},
    			},
    			pspPS: v1.PodStatus{
    				ContainerStatuses: []v1.ContainerStatus{
    					{
    						Name:        "fakeContainerName",
    						ContainerID: "docker://fakeContainerID",
    						State: v1.ContainerState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/containermap/container_map_test.go

    	testCases := []struct {
    		podUID         string
    		containerNames []string
    		containerIDs   []string
    	}{
    		{
    			"fakePodUID",
    			[]string{"fakeContainerName-1", "fakeContainerName-2"},
    			[]string{"fakeContainerID-1", "fakeContainerName-2"},
    		},
    	}
    
    	for _, tc := range testCases {
    		// Build a new containerMap from the testCases, checking proper
    		// addition, retrieval along the way.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 13:40:55 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top