Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for stopCh (0.23 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *               },
       *               executor)
       *           .closing(executor);
       * }</pre>
       */
      // TODO(cpovirk): Use simple name instead of fully qualified after we stop building with JDK 8.
      @com.google.errorprone.annotations.DoNotMock(
          "Use ClosingFuture.whenAllSucceed() or .whenAllComplete() instead.")
      public static class Combiner {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *               },
       *               executor)
       *           .closing(executor);
       * }</pre>
       */
      // TODO(cpovirk): Use simple name instead of fully qualified after we stop building with JDK 8.
      @com.google.errorprone.annotations.DoNotMock(
          "Use ClosingFuture.whenAllSucceed() or .whenAllComplete() instead.")
      public static class Combiner {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    		}
    
    		node := newNode("tainted", nil)
    		err = manager.nodeStore.Add(node)
    		if err != nil {
    			t.Fatal(err)
    		}
    		setNodeTaint(node, noExecuteTaints)
    		err = manager.podStore.Add(newPod("stop-running-me", "tainted", simpleDaemonSetLabel, ds))
    		if err != nil {
    			t.Fatal(err)
    		}
    		err = manager.dsStore.Add(ds)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    		rt := int(p.To.Reg)
    		r := int(p.Reg)
    		if r == obj.REG_NONE {
    			r = rt
    		}
    		o1 |= (uint32(rf&31) << 16) | (uint32(r&31) << 5) | uint32(rt&31)
    
    	// This is supposed to be something that stops execution.
    	// It's not supposed to be reached, ever, but if it is, we'd
    	// like to be able to tell how we got there. Assemble as
    	// 0xbea71700 which is guaranteed to raise undefined instruction
    	// exception.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    e[t]})}},connected:function(){this.start()},disconnected:function(){var e=this;this.stop(),this.units.forEach(function(t){return me(e[t])})},events:[{name:"visibilitychange",el:document,handler:function(){document.hidden?this.stop():this.start()}}],update:{write:function(){var t,e,n=this,r=(t=this.date,{total:e=t-Date.now(),seconds:e/1e3%60,minutes:e/1e3/60%60,hours:e/1e3/60/60%24,days:e/1e3/60/60/24});r.total<=0&&(this.stop(),r.days=r.hours=r.minutes=r.seconds=0),this.units.forEach(function(t){var e=...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    }
    func testTransportMaxPerHostIdleConns(t *testing.T, mode testMode) {
    	stop := make(chan struct{}) // stop marks the exit of main Test goroutine
    	defer close(stop)
    
    	resch := make(chan string)
    	gotReq := make(chan bool)
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		gotReq <- true
    		var msg string
    		select {
    		case <-stop:
    			return
    		case msg = <-resch:
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

        if (result == null) {
          globalStatsCounter.recordLoadException(stopwatch.elapsed(NANOSECONDS));
          throw new InvalidCacheLoadException(loader + " returned null map from loadAll");
        }
    
        stopwatch.stop();
        // TODO(fry): batch by segment
        boolean nullsPresent = false;
        for (Entry<K, V> entry : result.entrySet()) {
          K key = entry.getKey();
          V value = entry.getValue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                  TensorListLengthOp, TensorListGetItemOp>(use.getOwner()))
            continue;
    
          // For any other unknown users of the TensorList, we are conservative and
          // stop element shape inference.
          DCOMMENT("TensorListType infer, unknown op " << *use.getOwner());
          return false;
        }
      }
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	if !p.BinaryOnly {
    		if b.useCache(a, b.buildActionID(a), p.Target, need&needBuild != 0) {
    			// We found the main output in the cache.
    			// If we don't need any other outputs, we can stop.
    			// Otherwise, we need to write files to a.Objdir (needVet, needCgoHdr).
    			// Remember that we might have them in cache
    			// and check again after we create a.Objdir.
    			cachedBuild = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    		idx := -1
    		for i, s := range syms {
    			if ldr.AttrSubSymbol(s) {
    				continue
    			}
    
    			// If the next symbol's size would put us out of bounds on the total length,
    			// stop looking.
    			end := ldr.SymValue(s) + ldr.SymSize(s)
    			if end > lastAddr {
    				break
    			}
    
    			// We're gonna write this symbol.
    			idx = i
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top