Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 308 for gone (0.05 sec)

  1. src/net/http/transport.go

    	// gotten a connection another way. If they're all gone,
    	// we don't want to kick off any spurious dial operations.)
    	if q := t.connsPerHostWait[key]; q.len() > 0 {
    		done := false
    		for q.len() > 0 {
    			w := q.popFront()
    			if w.waiting() {
    				t.startDialConnForLocked(w)
    				done = true
    				break
    			}
    		}
    		if q.len() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. cmd/erasure-healing_test.go

    	}
    
    	err = os.RemoveAll(path.Join(fsDirs[0], bucket, object, "xl.meta"))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Write xl.meta with different modtime to simulate the case where a disk had
    	// gone down when an object was replaced by a new object.
    	fileInfoOutDated := fileInfoPreHeal
    	fileInfoOutDated.ModTime = time.Now()
    	err = disk.WriteMetadata(context.Background(), "", bucket, object, fileInfoOutDated)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		expectServiceInstances(t, sd, selector, 0, instances)
    		expectEvents(t, events,
    			Event{Type: "proxy", ID: "abc.def"},
    		)
    	})
    
    	t.Run("deletion", func(t *testing.T) {
    		// Delete the configs, it should be gone
    		deleteConfigs([]*config.Config{wle2}, store, t)
    		instances := []*model.ServiceInstance{
    			makeInstanceWithServiceAccount(selector, "2.2.2.2", 444,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    		} else if v.Op.IsCall() {
    			// if we hit a call, we've gone too far.
    			break
    		}
    	}
    
    	// Now make a pass through the ABI in-params, looking for params
    	// or pieces of params that we didn't encounter in the loop above.
    	for _, inp := range pri.InParams() {
    		if !isNamedRegParam(inp) {
    			continue
    		}
    		n := inp.Name
    
    		// Param is spread across one or more registers. Walk through
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

        echo "${option}" | ${SED} -e 's/\(.*\)=\(.*\)/  \1: "\2"/'
      done
    }
    
    function parse_feature_gates {
      echo "featureGates:"
      # Convert from foo=true,bar=false to
      #   foo: true
      #   bar: false
      for gate in $(echo "$1" | tr ',' ' '); do
        echo "${gate}" | ${SED} -e 's/\(.*\)=\(.*\)/  \1: \2/'
      done
    }
    
    function parse_eviction {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	StatusReasonConflict StatusReason = "Conflict"
    
    	// StatusReasonGone means the item is no longer available at the server and no
    	// forwarding address is known.
    	// Status code 410
    	StatusReasonGone StatusReason = "Gone"
    
    	// StatusReasonInvalid means the requested create or update operation cannot be
    	// completed due to invalid data provided as part of the request. The client may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    }
    
    // addPodEvictorForNewZone checks if new zone appeared, and if so add new evictor.
    func (nc *Controller) addPodEvictorForNewZone(logger klog.Logger, node *v1.Node) {
    	nc.evictorLock.Lock()
    	defer nc.evictorLock.Unlock()
    	zone := nodetopology.GetZoneKey(node)
    	if _, found := nc.zoneStates[zone]; !found {
    		nc.zoneStates[zone] = stateInitial
    		nc.zoneNoExecuteTainter[zone] =
    			scheduler.NewRateLimitedTimedQueue(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    	if !cache.WaitForNamedCacheSync("daemon sets", ctx.Done(), dsc.podStoreSynced, dsc.nodeStoreSynced, dsc.historyStoreSynced, dsc.dsStoreSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, dsc.runWorker, time.Second)
    	}
    
    	go wait.Until(dsc.failedPodsBackoff.GC, BackoffGCInterval, ctx.Done())
    
    	<-ctx.Done()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        for (OpOperand& use : resource.getUses()) {
          Operation* user = use.getOwner();
          // If the user is not in one of the regions, we are not interested in it.
          // Since all the sub-regions within this region (i.e., regions attached to
          // op's in this region) have themselves gone through lifting, all resource
          // users are expected to be operations in this region and not embedded
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	}
    	defer watcher.Stop()
    
    	done := make(chan struct{})
    	errc := make(chan error, 1)
    	var wg sync.WaitGroup
    	wg.Add(1)
    	// We must wait for the waitgroup to exit before we terminate the cache or the server in prior defers.
    	defer wg.Wait()
    	// Call close first, so the goroutine knows to exit.
    	defer close(done)
    
    	go func() {
    		defer wg.Done()
    		for i := 0; i < 100; i++ {
    			select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top