Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for container_1 (0.27 sec)

  1. pkg/kubelet/eviction/helpers.go

    				}
    			}
    		}
    		if containerFs := summary.Node.Runtime.ContainerFs; containerFs != nil {
    			if containerFs.AvailableBytes != nil && containerFs.CapacityBytes != nil {
    				result[evictionapi.SignalContainerFsAvailable] = signalObservation{
    					available: resource.NewQuantity(int64(*containerFs.AvailableBytes), resource.BinarySI),
    					capacity:  resource.NewQuantity(int64(*containerFs.CapacityBytes), resource.BinarySI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_test.go

    		sandbox0, sandbox1, sandbox2, sandbox3, sandbox4, sandbox5, sandbox6,
    	})
    	fakeRuntimeService.SetFakeContainers([]*critest.FakeContainer{
    		container0, container1, container2, container3, container4, container5, container6, container7, container8, container9,
    	})
    	fakeRuntimeService.SetFakeContainerStats([]*runtimeapi.ContainerStats{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.json

                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator_test.go

    					Containers: []v1.Container{
    						{Name: "container1", Resources: v1.ResourceRequirements{Requests: v1.ResourceList{v1.ResourceCPU: *resource.NewMilliQuantity(100, resource.DecimalSI)}}},
    						{Name: "container2", Resources: v1.ResourceRequirements{Requests: v1.ResourceList{v1.ResourceCPU: *resource.NewMilliQuantity(50, resource.DecimalSI)}}},
    					},
    				},
    			}},
    			container:        "container1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy_test.go

    			expectedErr:       errors.NewBadRequest("a container name must be specified for pod test, choose one of: [container1 container2]"),
    			expectedTransport: nil,
    		},
    		{
    			name: "initcontainers",
    			in: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: fakePodName},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{Name: "container1"},
    						{Name: "container2"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    			containers := []v1.Container{}
    
    			if tc.volumeMode == v1.PersistentVolumeFilesystem {
    				containers = append(containers, v1.Container{
    					VolumeMounts: []v1.VolumeMount{
    						{
    							Name:      pv.Name,
    							MountPath: "/mnt",
    							ReadOnly:  tc.readOnlyVol,
    						},
    					},
    				})
    			} else {
    				containers = append(containers, v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			UID: types.UID(podUID),
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:      containerName,
    					Resources: *requirements,
    				},
    			},
    		},
    	}
    }
    
    func getPodWithInitContainers(podUID string, containers []v1.Container, initContainers []v1.Container) *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID: types.UID(podUID),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    function Start_Containerd {
      # Do the registration only if the containerd service does not exist.
      if ((Get-WMIObject -Class Win32_Service -Filter  "Name='containerd'") -eq $null) {
        Log-Output "Creating containerd service"
        & containerd.exe --register-service --log-file "${env:LOGS_DIR}/containerd.log"
      }
    
      Log-Output "Starting containerd service"
      Restart-Service containerd
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	SPDRP_INSTALL_STATE               SPDRP = 0x00000022 // Device Install State (R)
    	SPDRP_LOCATION_PATHS              SPDRP = 0x00000023 // Device Location Paths (R)
    	SPDRP_BASE_CONTAINERID            SPDRP = 0x00000024 // Base ContainerID (R)
    
    	SPDRP_MAXIMUM_PROPERTY SPDRP = 0x00000025 // Upper bound on ordinals
    )
    
    // DEVPROPTYPE represents the property-data-type identifier that specifies the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// difference in the number of unique events
    	if containerID != "" {
    		eventMessage = strings.Replace(eventMessage, containerID, container.Name, -1)
    	}
    	m.recorder.Event(ref, eventType, reason, eventMessage)
    }
    
    // startSpec wraps the spec required to start a container, either a regular/init container
    // or an ephemeral container. Ephemeral containers contain all the fields of regular/init
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top