Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for Statuses (0.22 sec)

  1. pkg/kubelet/status/generate.go

    	runtimeutil "k8s.io/kubernetes/pkg/kubelet/kuberuntime/util"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    const (
    	// UnknownContainerStatuses says that all container statuses are unknown.
    	UnknownContainerStatuses = "UnknownContainerStatuses"
    	// PodCompleted says that all related containers have succeeded.
    	PodCompleted = "PodCompleted"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      // ParallelTensor per output of the original operation.
      //
      // Attributes are forwarded to executed operations unmodified.
      //
      // The returned optional has a value if and only if `status` evaluates to
      // TF_OK. Bad statuses are forwarded from underlying `TFE_Execute` calls, or
      // if sanity checks on dtypes/metadata fail.
      absl::optional<std::vector<std::unique_ptr<ParallelTensor>>> Execute(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. pkg/volume/util/util.go

    }
    
    // notRunning returns true if every status is terminated or waiting, or the status list
    // is empty.
    func notRunning(statuses []v1.ContainerStatus) bool {
    	for _, status := range statuses {
    		if status.State.Terminated == nil && status.State.Waiting == nil {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// - both saved and current statuses have Ready Conditions and they have the same LastProbeTime - nothing happened on that Node, it may be
    	//   unresponsive, so we leave it as it is,
    	// - both saved and current statuses have Ready Conditions, they have different LastProbeTimes, but the same Ready Condition State -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/worker_test.go

    	"k8s.io/kubernetes/pkg/probe"
    )
    
    func init() {
    }
    
    func TestDoProbe(t *testing.T) {
    	m := newTestManager()
    
    	for _, probeType := range [...]probeType{liveness, readiness, startup} {
    		// Test statuses.
    		runningStatus := getTestRunningStatusWithStarted(probeType != startup)
    		pendingStatus := getTestRunningStatusWithStarted(probeType != startup)
    		pendingStatus.ContainerStatuses[0].State.Running = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    Larger builds with hundreds of subprojects, configuration, and source code may benefit from a larger heap size.
    
    [[sec:status]]
    == Check Daemon status
    
    To get a list of running Daemons and their statuses, use the `--status` command:
    
    ----
    $ gradle --status
    ----
    
    ----
       PID STATUS   INFO
     28486 IDLE     7.5
     34247 BUSY     7.5
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pkg/api/testing/unstructured_test.go

    	}
    	seed := rand.Int63()
    	fuzzer.FuzzerFor(FuzzerFuncs, rand.NewSource(seed), legacyscheme.Codecs).
    		// We are explicitly overwriting custom fuzzing functions, to ensure
    		// that InitContainers and their statuses are not generated. This is
    		// because in this test we are simply doing json operations, in which
    		// those disappear.
    		Funcs(
    			func(s *api.PodSpec, c fuzz.Continue) {
    				c.FuzzNoCustom(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				InitContainersToStart:    []int{0},
    				ContainersToStart:        []int{},
    				ContainersToKill:         getKillMapWithInitContainers(basePod, baseStatus, []int{}),
    			},
    		},
    		"some of the init container statuses are missing but the last init container is running, don't restart preceding ones": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/memorymanager/memory_manager.go

    	// so all the containers can be updated during call to the removeStaleState.
    	activePods ActivePodsFunc
    
    	// podStatusProvider provides a method for obtaining pod statuses
    	// and the containerID of their containers
    	podStatusProvider status.PodStatusProvider
    
    	// containerMap provides a mapping from (pod, container) -> containerID
    	// for all containers a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  10. pkg/scheduler/testing/wrappers.go

    	return wrapper
    }
    
    // ResourceClaims sets that field of the inner object.
    func (wrapper *PodSchedulingWrapper) ResourceClaims(statuses ...resourcev1alpha2.ResourceClaimSchedulingStatus) *PodSchedulingWrapper {
    	wrapper.Status.ResourceClaims = statuses
    	return wrapper
    }
    
    type ResourceSliceWrapper struct {
    	resourcev1alpha2.ResourceSlice
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top