Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for pidStatus (0.18 sec)

  1. src/os/exec.go

    		if !p.state.CompareAndSwap(refs, new) {
    			continue
    		}
    		if new&^processStatusMask == 0 {
    			p.closeHandle()
    		}
    		return status
    	}
    }
    
    func (p *Process) pidStatus() processStatus {
    	if p.mode != modePID {
    		panic("pidStatus called in invalid mode")
    	}
    
    	return processStatus(p.state.Load())
    }
    
    func (p *Process) pidDeactivate(reason processStatus) {
    	if p.mode != modePID {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. pkg/controller/job/pod_failure_policy_test.go

    							Operator: batch.PodFailurePolicyOnExitCodesOpIn,
    							Values:   []int32{2, 3},
    						},
    					},
    				},
    			},
    			failedPod: &v1.Pod{
    				ObjectMeta: validPodObjectMeta,
    				Status: v1.PodStatus{
    					Phase: v1.PodFailed,
    					ContainerStatuses: []v1.ContainerStatus{
    						{
    							Name: "main-container",
    							State: v1.ContainerState{
    								Terminated: &v1.ContainerStateTerminated{
    									ExitCode: 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. pkg/kubelet/pleg/evented.go

    func (e *EventedPLEG) updateRunningPodMetric(podStatus *kubecontainer.PodStatus) {
    	cachedPodStatus, err := e.cache.Get(podStatus.ID)
    	if err != nil {
    		klog.ErrorS(err, "Evented PLEG: Get cache", "podID", podStatus.ID)
    	}
    	// cache miss condition: The pod status object will have empty state if missed in cache
    	if len(cachedPodStatus.SandboxStatuses) < 1 {
    		sandboxState := getPodSandboxState(podStatus)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pkg/kubelet/container/helpers.go

    // ConvertPodStatusToRunningPod returns Pod given PodStatus and container runtime string.
    // TODO(random-liu): Convert PodStatus to running Pod, should be deprecated soon
    func ConvertPodStatusToRunningPod(runtimeName string, podStatus *PodStatus) Pod {
    	runningPod := Pod{
    		ID:        podStatus.ID,
    		Name:      podStatus.Name,
    		Namespace: podStatus.Namespace,
    	}
    	for _, containerStatus := range podStatus.ContainerStatuses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. pkg/api/pod/util.go

    		dropUserField(podStatus.ContainerStatuses)
    		dropUserField(podStatus.EphemeralContainerStatuses)
    	}
    }
    
    func hostIPsInUse(podStatus *api.PodStatus) bool {
    	if podStatus == nil {
    		return false
    	}
    	return len(podStatus.HostIPs) > 0
    }
    
    // dropDisabledDynamicResourceAllocationFields removes pod claim references from
    // container specs and pod-level resource claims unless they are already used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager.go

    			klog.V(4).InfoS("Static pod has no corresponding mirror pod, no need to reconcile", "pod", klog.KObj(pod))
    			return false
    		}
    		pod = mirrorPod
    	}
    
    	podStatus := pod.Status.DeepCopy()
    	normalizeStatus(pod, podStatus)
    
    	if isPodStatusByKubeletEqual(podStatus, &status) {
    		// If the status from the source is the same with the cached status,
    		// reconcile is not needed. Just return.
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/informers_test.go

    	defer cancel()
    
    	pod := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "test",
    			Namespace: "test",
    		},
    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    		},
    	}
    	ns := &corev1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: "test"}}
    
    	client := kube.NewFakeClient(ns, pod)
    
    	// We are expecting at most 1 calls to the mock, wait for them
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. pkg/controller/job/backoff_utils_test.go

    			newFailedPods := []*v1.Pod{}
    
    			for _, finishTime := range tc.newSucceededPods {
    				newSucceededPods = append(newSucceededPods, &v1.Pod{
    					ObjectMeta: metav1.ObjectMeta{},
    					Status: v1.PodStatus{
    						Phase: v1.PodSucceeded,
    						ContainerStatuses: []v1.ContainerStatus{
    							{
    								State: v1.ContainerState{
    									Terminated: &v1.ContainerStateTerminated{
    										FinishedAt: finishTime,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	if err := f(nil,
    		&v1.Pod{ObjectMeta: pod1, Status: v1.PodStatus{Conditions: notReadyCondition, PodIP: ip, Phase: v1.PodPending}},
    		model.EventUpdate); err != nil {
    		t.Error(err)
    	}
    	if handled != 0 {
    		t.Errorf("notified workload handler %d times, want %d", handled, 0)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/generic.go

    	}
    
    	// When we use Generic PLEG only, the PodStatus is saved in the cache without
    	// any validation of the existing status against the current timestamp.
    	// This works well when there is only Generic PLEG setting the PodStatus in the cache however,
    	// if we have multiple entities, such as Evented PLEG, while trying to set the PodStatus in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top