Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for Statuses (0.13 sec)

  1. pkg/controller/resourceclaim/controller.go

    	}
    
    	if newPodClaims != nil {
    		// Patch the pod status with the new information about
    		// generated ResourceClaims.
    		statuses := make([]*corev1apply.PodResourceClaimStatusApplyConfiguration, 0, len(newPodClaims))
    		for podClaimName, resourceClaimName := range newPodClaims {
    			statuses = append(statuses, corev1apply.PodResourceClaimStatus().WithName(podClaimName).WithResourceClaimName(resourceClaimName))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime.go

    	ContainerStatuses []*Status
    	// Status of the pod sandbox.
    	// Only for kuberuntime now, other runtime may keep it nil.
    	SandboxStatuses []*runtimeapi.PodSandboxStatus
    	// Timestamp at which container and pod statuses were recorded
    	TimeStamp time.Time
    }
    
    // ContainerResources represents the Resources allocated to the running container.
    type ContainerResources struct {
    	// CPU capacity reserved for the container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

        // We will run every Join even if there are bad statuses in case the user
        // wants to recover and continue running ops on the parallel device (which
        // would otherwise deadlock).
        if (TF_GetCode(status) != TF_OK &&
            (first_bad_status == nullptr
             // Prefer propagating non-cancellation related statuses to avoid
             // shadowing the original failure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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 (0)
Back to top