Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for pidStatus (0.17 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

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

    		{Name: "IP", Type: "string", Priority: 1, Description: apiv1.PodStatus{}.SwaggerDoc()["podIP"]},
    		{Name: "Node", Type: "string", Priority: 1, Description: apiv1.PodSpec{}.SwaggerDoc()["nodeName"]},
    		{Name: "Nominated Node", Type: "string", Priority: 1, Description: apiv1.PodStatus{}.SwaggerDoc()["nominatedNodeName"]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    			reportedCPURequest := resource.MustParse("1.0")
    			if specifiedCPURequests {
    				reportedCPURequest = tc.reportedCPURequests[i]
    			}
    
    			pod := v1.Pod{
    				Status: v1.PodStatus{
    					Phase: podPhase,
    					Conditions: []v1.PodCondition{
    						{
    							Type:               v1.PodReady,
    							Status:             podReadiness,
    							LastTransitionTime: podStartTime,
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "required": [
            "containers"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.PodStatus": {
          "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.",
          "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers_test.go

    	testpod := newPod("testpod", 1, []v1.Container{
    		newContainer("testcontainer", newResourceList("", "200Mi", ""), newResourceList("", "", "")),
    	}, nil)
    	testpod.Status = v1.PodStatus{
    		ContainerStatuses: []v1.ContainerStatus{
    			{
    				Name:               "testcontainer",
    				AllocatedResources: newResourceList("", "100Mi", ""),
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    
    	// mark pods[1] ~ pods[totalNum-1] as unschedulable and add them back
    	for i := 1; i < totalNum; i++ {
    		unschedulablePod := expectedPods[i].DeepCopy()
    		unschedulablePod.Status = v1.PodStatus{
    			Conditions: []v1.PodCondition{
    				{
    					Type:   v1.PodScheduled,
    					Status: v1.ConditionFalse,
    					Reason: v1.PodReasonUnschedulable,
    				},
    			},
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top