Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for containerUsage (0.38 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    	// expectedImageList is generated by imageList according to size and maxImages
    	// 1. sort the imageList by size
    	sort.Sort(sliceutils.ByImageSize(imageList))
    	// 2. convert sorted imageList to v1.ContainerImage list
    	var expectedImageList []v1.ContainerImage
    	for _, kubeImage := range imageList {
    		apiImage := v1.ContainerImage{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    	imageStatus1 := []v1.ContainerImage{
    		{
    			Names: []string{
    				"gcr.io/40:latest",
    				"gcr.io/40:v1",
    			},
    			SizeBytes: int64(80 * mb),
    		},
    		{
    			Names: []string{
    				"gcr.io/300:latest",
    				"gcr.io/300:v1",
    			},
    			SizeBytes: int64(300 * mb),
    		},
    	}
    
    	imageStatus2 := []v1.ContainerImage{
    		{
    			Names: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    func (in *ContainerImage) DeepCopyInto(out *ContainerImage) {
    	*out = *in
    	if in.Names != nil {
    		in, out := &in.Names, &out.Names
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerImage.
    func (in *ContainerImage) DeepCopy() *ContainerImage {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *ContainerImage) DeepCopyInto(out *ContainerImage) {
    	*out = *in
    	if in.Names != nil {
    		in, out := &in.Names, &out.Names
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerImage.
    func (in *ContainerImage) DeepCopy() *ContainerImage {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    						{Name: "init1", Image: "initimage"},
    						{Name: "sidecar1", Image: "sidecarimage", RestartPolicy: ptr.To(api.ContainerRestartPolicyAlways)},
    					},
    					Containers: []api.Container{{Name: "container1", Image: "containerimage"}},
    				},
    				Status: api.PodStatus{
    					Phase: "Running",
    					InitContainerStatuses: []api.ContainerStatus{
    						{Name: "initinvalid"},
    						{Name: "init1"},
    						{Name: "sidecar1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            }
          },
          "required": [
            "name"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.ContainerImage": {
          "description": "Describe a container image",
          "properties": {
            "names": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top