Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,894 for unready (0.11 sec)

  1. okhttp/src/test/java/okhttp3/FakeRoutePlanner.kt

        var canceled = false
        var connectState = ConnectState.READY
        val connection =
          factory.newConnection(
            pool = pool,
            route = factory.newRoute(address),
            idleAtNanos = defaultConnectionIdleAtNanos,
          )
        var retry: FakePlan? = null
        var retryTaken = false
        var yieldBeforePlanReturns = false
    
        override val isReady: Boolean
          get() = connectState == ConnectState.TLS_CONNECTED
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller.go

    			}
    			klog.Infof("default ServiceCIDR condition Ready is not True: %v", condition.Status)
    			c.eventRecorder.Eventf(serviceCIDR, v1.EventTypeWarning, condition.Reason, condition.Message)
    			return
    		}
    	}
    	// set status to ready if the ServiceCIDR matches this configuration
    	if reflect.DeepEqual(c.cidrs, serviceCIDR.Spec.CIDRs) {
    		klog.Infof("Setting default ServiceCIDR condition Ready to True")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

        prev_part = part;
      }
    
      Block::iterator next_unscheduled_op = ops.begin();
      const Block::iterator end = ops.end();
    
      // An operation is ready to be scheduled if all its operands are ready. An
      // operand is ready if:
      const auto is_ready = [&](Value value, Operation *top) {
        Operation *parent = value.getDefiningOp();
        // - it is a block argument,
        if (parent == nullptr) return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

      - Fixing or improving documentation.
      - Improvements to Maven configuration.
    
    Guidelines for any code contributions:
    
      1. Any significant changes should be accompanied by tests. The project already
         has good test coverage, so look at some existing tests if you're unsure
         how to go about it.
      2. All contributions must be licensed Apache 2.0 and all files must have a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. pkg/proxy/endpointslicecache.go

    			continue
    		}
    
    		isLocal := endpoint.NodeName != nil && cache.isLocal(*endpoint.NodeName)
    
    		ready := endpoint.Conditions.Ready == nil || *endpoint.Conditions.Ready
    		serving := endpoint.Conditions.Serving == nil || *endpoint.Conditions.Serving
    		terminating := endpoint.Conditions.Terminating != nil && *endpoint.Conditions.Terminating
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  6. pilot/pkg/xds/pushqueue.go

    	}
    }
    
    // Enqueue will mark a proxy as pending a push. If it is already pending, pushInfo will be merged.
    // ServiceEntry updates will be added together, and full will be set if either were full
    func (p *PushQueue) Enqueue(con *Connection, pushRequest *model.PushRequest) {
    	p.cond.L.Lock()
    	defer p.cond.L.Unlock()
    
    	if p.shuttingDown {
    		return
    	}
    
    	// If its already in progress, merge the info and return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 16 01:37:15 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/ipallocator.go

    	ipAddressLister networkingv1alpha1listers.IPAddressLister
    	ipAddressSynced cache.InformerSynced
    	// ready indicates if the allocator is able to allocate new IP addresses.
    	// This is required because it depends on the ServiceCIDR to be ready.
    	ready atomic.Bool
    
    	// metrics is a metrics recorder that can be disabled
    	metrics     metricsRecorderInterface
    	metricLabel string
    
    	rand *rand.Rand
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

                            $('li.unresolvable a').attr('title', 'This dependency could not be resolved');
                            $('li.alreadyRendered a').attr('title', 'The children of this dependency are not displayed because they have already been displayed before');
                        });
                $insightDiv.append($tree);
                $tree.on('click', 'a', function(event) {
                    event.preventDefault();
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/AbstractIterator.java

      /** Constructor for use by subclasses. */
      protected AbstractIterator() {}
    
      private enum State {
        /** We have computed the next element and haven't returned it yet. */
        READY,
    
        /** We haven't yet computed or have already returned the element. */
        NOT_READY,
    
        /** We have reached the end of the data and are finished. */
        DONE,
    
        /** We've suffered an exception and are kaput. */
        FAILED,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/AbstractIterator.java

      /** Constructor for use by subclasses. */
      protected AbstractIterator() {}
    
      private enum State {
        /** We have computed the next element and haven't returned it yet. */
        READY,
    
        /** We haven't yet computed or have already returned the element. */
        NOT_READY,
    
        /** We have reached the end of the data and are finished. */
        DONE,
    
        /** We've suffered an exception and are kaput. */
        FAILED,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top