Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for Statuses (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/controller/resourceclaim/controller_test.go

    					actualStatuses = make(map[string][]v1.PodResourceClaimStatus)
    				}
    				actualStatuses[pod.Name] = pod.Status.ResourceClaimStatuses
    			}
    			assert.Equal(t, tc.expectedStatuses, actualStatuses, "pod resource claim statuses")
    
    			scheduling, err := fakeKubeClient.ResourceV1alpha2().PodSchedulingContexts("").List(ctx, metav1.ListOptions{})
    			if err != nil {
    				t.Fatalf("unexpected error while listing claims: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. 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)
  8. pkg/scheduler/framework/preemption/preemption.go

    		}
    	}
    	return lowerPriorityPods
    }
    
    // DryRunPreemption simulates Preemption logic on <potentialNodes> in parallel,
    // returns preemption candidates and a map indicating filtered nodes statuses.
    // The number of candidates depends on the constraints defined in the plugin's args. In the returned list of
    // candidates, ones that do not violate PDB are preferred over ones that do.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    						klog.ErrorS(err, "getPodContainerStatuses for pod failed", "pod", klog.KObj(pod))
    					}
    					return nil, err
    				}
    			} else {
    				// Get the statuses of all containers visible to the pod and
    				// timestamp from sandboxStatus.
    				timestamp = time.Unix(resp.Timestamp, 0)
    				for _, cs := range resp.ContainersStatuses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    				defaultCluster.cluster.CommonLbConfig.OverrideHostStatus = &core.HealthStatusSet{
    					Statuses: []core.HealthStatus{
    						core.HealthStatus_HEALTHY,
    						core.HealthStatus_DRAINING, core.HealthStatus_UNKNOWN, core.HealthStatus_DEGRADED,
    					},
    				}
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top