Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for not_ready (0.15 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    		containers           []containerTemplate // templates of containers
    		remain               []int               // template indexes of remaining sandboxes
    		evictTerminatingPods bool
    	}{
    		{
    			description: "notready sandboxes without containers for deleted pods should be garbage collected.",
    			sandboxes: []sandboxTemplate{
    				makeGCSandbox(pods[2], 0, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, false, false, 0),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. src/internal/trace/testtrace/validation.go

    		tr := ev.StateTransition()
    		if tr.Resource.Kind != trace.ResourceGoroutine {
    			return false
    		}
    		from, to := tr.Goroutine()
    		return from == trace.GoUndetermined && to == trace.GoSyscall
    	}
    	if m == trace.NoThread && !lenient() {
    		e.Errorf("must have thread, but thread ID is none")
    		return nil
    	}
    	s, ok := v.ms[m]
    	if !ok {
    		s = &schedContext{M: m, P: trace.NoProc, G: trace.NoGoroutine}
    		v.ms[m] = s
    		return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.2.md

    server in a given timeframe for whatever reasons (networking issue, machine
    failure, etc.). Normally when kube-up script will encounter even one NotReady
    node it will fail, even though the cluster most likely will be working. We
    added an environmental variable to kube-up ALLOWED\_NOTREADY\_NODES that
    defines the number of nodes that if not Ready in time won’t cause kube-up
    failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  4. src/internal/trace/event.go

    //
    // Note that for thread state transitions this always refers to the
    // state before the transition. For example, if a thread is just
    // starting to run, then this will return NoThread.
    //
    // Note: tracking thread state is not currently supported, so this
    // will always return a valid thread ID. However thread state transitions
    // may be tracked in the future, and callers must be robust to this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller.go

    	}
    	return endpointSlice
    }
    
    // isNodeReady returns true if a node is ready; false otherwise.
    func isNodeReady(node *v1.Node) bool {
    	for _, c := range node.Status.Conditions {
    		if c.Type == v1.NodeReady {
    			return c.Status == v1.ConditionTrue
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller.go

    	return !ok
    }
    
    // truncateEndpoints by best effort will distribute the endpoints over the subsets based on the proportion
    // of endpoints per subset and will prioritize Ready Endpoints over NotReady Endpoints.
    func truncateEndpoints(endpoints *v1.Endpoints) bool {
    	totalReady := 0
    	totalNotReady := 0
    	for _, subset := range endpoints.Subsets {
    		totalReady += len(subset.Addresses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/syscall/zerrors_aix_ppc64.go

    	ENOSTR          = Errno(0x7b)
    	ENOSYS          = Errno(0x6d)
    	ENOTBLK         = Errno(0xf)
    	ENOTCONN        = Errno(0x4c)
    	ENOTDIR         = Errno(0x14)
    	ENOTEMPTY       = Errno(0x11)
    	ENOTREADY       = Errno(0x2e)
    	ENOTRECOVERABLE = Errno(0x5e)
    	ENOTRUST        = Errno(0x72)
    	ENOTSOCK        = Errno(0x39)
    	ENOTSUP         = Errno(0x7c)
    	ENOTTY          = Errno(0x19)
    	ENXIO           = Errno(0x6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  8. pkg/controller/podgc/gc_controller_test.go

    					Spec: v1.NodeSpec{
    						Taints: node.taints,
    					},
    					Status: v1.NodeStatus{
    						Conditions: []v1.NodeCondition{
    							{
    								Type:   v1.NodeReady,
    								Status: node.readyCondition,
    							},
    						},
    					},
    				})
    			}
    			pods := make([]*v1.Pod, 0, len(test.pods))
    			for _, pod := range test.pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. pkg/volume/plugins.go

    type KubeletVolumeHost interface {
    	// SetKubeletError lets plugins set an error on the Kubelet runtime status
    	// that will cause the Kubelet to post NotReady status with the error message provided
    	SetKubeletError(err error)
    
    	// GetInformerFactory returns the informer factory for CSIDriverLister
    	GetInformerFactory() informers.SharedInformerFactory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top