Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for exit_node (0.17 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                "message": "messageValue"
              },
              "running": {
                "startedAt": "2001-01-01T01:01:01Z"
              },
              "terminated": {
                "exitCode": 1,
                "signal": 2,
                "reason": "reasonValue",
                "message": "messageValue",
                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				status.ContainerStatuses[0].State = kubecontainer.ContainerStateExited
    				status.ContainerStatuses[0].ExitCode = 0
    
    				// The second container exited with failure, restart it,
    				status.ContainerStatuses[1].State = kubecontainer.ContainerStateExited
    				status.ContainerStatuses[1].ExitCode = 111
    			},
    			actions: podActions{
    				SandboxID:         baseStatus.SandboxStatuses[0].Id,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  3. src/testing/testing.go

    		if anyFailed {
    			fmt.Print(chatty.prefix(), "FAIL\n")
    			m.exitCode = 1
    			return
    		}
    	}
    
    	fuzzingOk := runFuzzing(m.deps, m.fuzzTargets)
    	if !fuzzingOk {
    		fmt.Print(chatty.prefix(), "FAIL\n")
    		if *isFuzzWorker {
    			m.exitCode = fuzzWorkerExitCode
    		} else {
    			m.exitCode = 1
    		}
    		return
    	}
    
    	m.exitCode = 0
    	if !*isFuzzWorker {
    		fmt.Print(chatty.prefix(), "PASS\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		cStatus.StartedAt = time.Unix(0, status.StartedAt)
    	}
    	if status.State == runtimeapi.ContainerState_CONTAINER_EXITED {
    		cStatus.Reason = status.Reason
    		cStatus.Message = status.Message
    		cStatus.ExitCode = int(status.ExitCode)
    		cStatus.FinishedAt = time.Unix(0, status.FinishedAt)
    	}
    	return cStatus
    }
    
    // executePreStopHook runs the pre-stop lifecycle hooks if applicable and returns the duration it takes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	cStatus := podStatus.FindContainerStatusByName(c.Name)
    	if cStatus == nil || cStatus.State == kubecontainer.ContainerStateRunning {
    		return false
    	}
    	return cStatus.ExitCode == 0
    }
    
    func isInPlacePodVerticalScalingAllowed(pod *v1.Pod) bool {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		return false
    	}
    	if types.IsStaticPod(pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top