Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,201 for readIvy (0.24 sec)

  1. pkg/proxy/endpointslicecache_test.go

    					&BaseEndpointInfo{ip: "10.0.1.4", port: 80, endpoint: "10.0.1.4:80", isLocal: false, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.1.5", port: 80, endpoint: "10.0.1.5:80", isLocal: false, ready: true, serving: true, terminating: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

        for (Operation* op : ready) {
          if (best == nullptr || better(op, best)) {
            best = op;
          }
        }
    
        if (!best) {
          assert(ready.empty());
          return result;  // happens for unused results for ops in the todo list
        }
    
        // Consider this operation emitted, and make its results available.
        ready.erase(std::find(ready.begin(), ready.end(), best));
        previous_op = best;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/prober_manager.go

    			continue
    		}
    
    		var ready bool
    		if c.State.Running == nil {
    			ready = false
    		} else if result, ok := m.readinessManager.Get(kubecontainer.ParseContainerID(c.ContainerID)); ok && result == results.Success {
    			ready = true
    		} else {
    			// The check whether there is a probe which hasn't run yet.
    			w, exists := m.getWorker(pod.UID, c.Name, readiness)
    			ready = !exists // no readinessProbe -> always ready
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_chatty_parallel_success.txt

    	// ready is a synchronization mechanism that causes subtests to execute
    	// round robin.
    	ready := make([]chan bool, parallel)
    	for i := range ready {
    		ready[i] = make(chan bool, 1)
    	}
    	ready[0] <- true
    
    	for i := range ready {
    		i := i
    		t.Run(fmt.Sprintf("sub-%d", i), func(t *testing.T) {
    			t.Parallel()
    			for j := 0; j < 2; j++ {
    				<-ready[i]
    				t.Logf("this is sub-%d", i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. pkg/proxy/endpoint.go

    	isLocal bool
    
    	// ready indicates whether this endpoint is ready and NOT terminating, unless
    	// PublishNotReadyAddresses is set on the service, in which case it will just
    	// always be true.
    	ready bool
    	// serving indicates whether this endpoint is ready regardless of its terminating state.
    	// For pods this is true if it has a ready status regardless of its deletion timestamp.
    	serving bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/wait.go

    		return err
    	}
    
    	var notReady []string
    	var debugInfo map[string]string
    
    	// Check if we are ready immediately, to avoid the 2s delay below when we are already ready
    	if ready, _, _, err := waitForResources(objects, client.Kube(), l); err == nil && ready {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/configuration/configuration_manager.go

    var (
    	ErrNotReady = fmt.Errorf("configuration is not ready")
    	ErrDisabled = fmt.Errorf("disabled")
    )
    
    type getFunc func() (runtime.Object, error)
    
    // When running, poller calls `get` every `interval`. If `get` is
    // successful, `Ready()` returns ready and `configuration()` returns the
    // `mergedConfiguration`; if `get` has failed more than `failureThreshold ` times,
    // `Ready()` returns not ready and `configuration()` returns nil configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 02:02:38 UTC 2017
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/handler_test.go

    	if !handler.WaitForReady() {
    		t.Errorf("Expect ready for no readyFunc provided.")
    	}
    
    	// 2. readyFunc return ready immediately
    	readyFunc := func() bool {
    		return true
    	}
    	handler.SetReadyFunc(readyFunc)
    	if !handler.WaitForReady() {
    		t.Errorf("Expect ready for readyFunc returns ready immediately.")
    	}
    
    	// 3. readyFunc always return not ready. WaitForReady timeout
    	readyFunc = func() bool {
    		return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 08:47:19 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/wait.go

    				select {
    				case <-timeout:
    					return fmt.Errorf("timeout waiting for Envoy proxy to become ready. Last error: %v", err)
    				case <-time.After(time.Duration(periodMillis) * time.Millisecond):
    					err = checkIfReady(client, url)
    					if err == nil {
    						log.Infof("Envoy is ready!")
    						return nil
    					}
    					log.Debugf("Not ready yet: %v", err)
    				}
    			}
    		},
    	}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. pkg/kubelet/status/generate.go

    		}
    	}
    
    	return v1.PodCondition{
    		Type:   v1.ContainersReady,
    		Status: v1.ConditionTrue,
    	}
    }
    
    // GeneratePodReadyCondition returns "Ready" condition of a pod.
    // The status of "Ready" condition is "True", if all containers in a pod are ready
    // AND all matching conditions specified in the ReadinessGates have status equal to "True".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top