Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,201 for readIvy (0.12 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    		name: "even zones, uneven endpoint distribution but within threshold, no sync required",
    		nodes: []nodeInfo{
    			{zoneLabel: &zoneB, ready: &readyTrue, cpu: &cpu2000},
    			{zoneLabel: &zoneB, ready: &readyTrue, cpu: &cpu2000},
    			{zoneLabel: &zoneC, ready: &readyTrue, cpu: &cpu2000},
    			{zoneLabel: &zoneC, ready: &readyTrue, cpu: &cpu2000},
    		},
    		topologyCacheEnabled: true,
    		endpointZoneInfo: map[string]topologycache.EndpointZoneInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/lockosthread.go

    			os.Exit(1)
    		}
    		// Exit with the thread locked, which should exit the
    		// main thread.
    		ready <- true
    	}()
    	<-ready
    	time.Sleep(1 * time.Millisecond)
    	// Check that this goroutine is still running on a different
    	// thread.
    	self := C.pthread_self()
    	if C.pthread_equal(mainThread, self) != 0 {
    		println("goroutine migrated to locked thread")
    		os.Exit(1)
    	}
    	println("OK")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:21:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.349559Z	info	Subchannel Connectivity change to READY
    2020-06-29T23:37:27.349600Z	info	pickfirstBalancer: HandleSubConnStateChange: 0xc00087d1e0, {READY <nil>}
    2020-06-29T23:37:27.349610Z	info	Channel Connectivity change to READY
    2020-06-29T23:37:27.438932Z	info	sds	SDS gRPC server for workload UDS starts, listening on "./etc/istio/proxy/SDS"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    			},
    			options:  PrintOptions{},
    			expected: "NAME    READY   STATUS\ntest1   1/1     podPhase\n",
    		},
    		// Test a basic multi-row table row table. Columns with priority > 0 are not printed.
    		{
    			columns: []metav1.TableColumnDefinition{
    				{Name: "Name", Type: "string"},
    				{Name: "Ready", Type: "string"},
    				{Name: "Status", Type: "string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/well_known_taints.go

    limitations under the License.
    */
    
    package v1
    
    const (
    	// TaintNodeNotReady will be added when node is not ready
    	// and removed when node becomes ready.
    	TaintNodeNotReady = "node.kubernetes.io/not-ready"
    
    	// TaintNodeUnreachable will be added when node becomes unreachable
    	// (corresponding to NodeReady status ConditionUnknown)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 16:23:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_remote_function_test.cc

                                        /*remote_func_outputs=*/true);
    }
    TEST(CAPI, RemoteExecuteSilentCopiesLocalAsyncFuncOrdering) {
      // A remote input may be not ready when we start running a function. Test that
      // the function execution should wait until the remote input is ready.
      TestRemoteExecuteSilentCopiesFunc(/*async=*/true, /*remote=*/false,
                                        /*heavy_load_on_streaming_rpc=*/true);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 22:56:03 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  7. src/runtime/mem.go

    //               Ready. Accessing memory in such a region is undefined (may
    //               fault, may give back unexpected zeroes, etc.).
    // 4) Ready - may be accessed safely.
    //
    // This set of states is more than is strictly necessary to support all the
    // currently supported platforms. One could get by with just None, Reserved, and
    // Ready. However, the Prepared state gives us flexibility for performance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. cluster/validate-cluster.sh

        fi
        break
      elif (( "${ready}" > "${EXPECTED_NUM_NODES}")); then
        echo -e "${color_red}Found ${ready} ready nodes, but expected ${EXPECTED_NUM_NODES}. Your cluster may not behave correctly.${color_norm}"
        break
      else
        if [[ "${REQUIRED_NUM_NODES}" -le "${ready}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  9. pkg/api/v1/endpoints/util.go

    	}
    	// if we have not yet recorded this port for this address, or if the previous
    	// state was ready, write the current ready state. not ready always trumps
    	// ready.
    	if wasReady, found := portToAddrReadyMap[port][existingAddress]; !found || wasReady {
    		portToAddrReadyMap[port][existingAddress] = ready
    	}
    	return existingAddress
    }
    
    type addressSet map[*v1.EndpointAddress]bool
    
    type addrReady struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/handler.go

    // SetReadyFunc allows late registration of a ReadyFunc to know if the handler is ready to process requests.
    func (h *Handler) SetReadyFunc(readyFunc ReadyFunc) {
    	h.readyFunc = readyFunc
    }
    
    // WaitForReady will wait for the readyFunc (if registered) to return ready, and in case of timeout, will return false.
    func (h *Handler) WaitForReady() bool {
    	// there is no ready func configured, so we return immediately
    	if h.readyFunc == nil {
    		return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 08:47:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
Back to top