Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for notReady (0.13 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				if currentReadyCondition.Status != v1.ConditionTrue && observedReadyCondition.Status == v1.ConditionTrue {
    					// If error happened during node status transition (Ready -> NotReady)
    					// we need to mark node for retry to force MarkPodsNotReady execution
    					// in the next iteration.
    					nc.nodesToRetry.Store(node.Name, struct{}{})
    				}
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller_test.go

    	}
    	p.Status.PodIP = p.Status.PodIPs[0].IP
    
    	return p
    }
    
    func addPods(store cache.Store, namespace string, nPods int, nPorts int, nNotReady int, ipFamilies []v1.IPFamily) {
    	for i := 0; i < nPods+nNotReady; i++ {
    		isReady := i < nPods
    		pod := testPod(namespace, i, nPorts, isReady, ipFamilies)
    		store.Add(pod)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	ENOSYS          = syscall.Errno(0x6d)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x4c)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x11)
    	ENOTREADY       = syscall.Errno(0x2e)
    	ENOTRECOVERABLE = syscall.Errno(0x5e)
    	ENOTRUST        = syscall.Errno(0x72)
    	ENOTSOCK        = syscall.Errno(0x39)
    	ENOTSUP         = syscall.Errno(0x7c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	ENOSYS          = syscall.Errno(0x6d)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x4c)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x11)
    	ENOTREADY       = syscall.Errno(0x2e)
    	ENOTRECOVERABLE = syscall.Errno(0x5e)
    	ENOTRUST        = syscall.Errno(0x72)
    	ENOTSOCK        = syscall.Errno(0x39)
    	ENOTSUP         = syscall.Errno(0x7c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
Back to top