Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 183 for addSdk (0.18 sec)

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

          currentWaiter.unpark();
        }
      }
    
      /**
       * Clears the {@link #listeners} list and prepends its contents to {@code onto}, least recently
       * added first.
       */
      @CheckForNull
      private Listener clearListeners(@CheckForNull Listener onto) {
        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          currentWaiter.unpark();
        }
      }
    
      /**
       * Clears the {@link #listeners} list and prepends its contents to {@code onto}, least recently
       * added first.
       */
      @CheckForNull
      private Listener clearListeners(@CheckForNull Listener onto) {
        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. pkg/kubelet/pod_workers.go

    	// terminated. After the pod is in terminated state, nothing should be
    	// added to this list.
    	notifyPostTerminating []chan<- struct{}
    	// statusPostTerminating is a list of the status changes associated
    	// with kill pod requests. After the pod is in terminated state, nothing
    	// should be added to this list. The worker will execute the last function
    	// in this list on each termination attempt.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	releasem(mp)
    }
    
    // lockTimer assists with profiling contention on runtime-internal locks.
    //
    // There are several steps between the time that an M experiences contention and
    // when that contention may be added to the profile. This comes from our
    // constraints: We need to keep the critical section of each lock small,
    // especially when those locks are contended. The reporting code cannot acquire
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    				natRules.Write(args, "-s", cidr.String(), "-j", string(externalTrafficChain))
    				if cidr.Contains(proxier.nodeIP) {
    					allowFromNode = true
    				}
    			}
    			// For VIP-like LBs, the VIP is often added as a local
    			// address (via an IP route rule).  In that case, a request
    			// from a node to the VIP will not hit the loadbalancer but
    			// will loop back with the source IP set to the VIP.  We
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// suites might change over time. In Go 1.22 RSA key exchange based cipher
    	// suites were removed from the default list, but can be re-added with the
    	// GODEBUG setting tlsrsakex=1. In Go 1.23 3DES cipher suites were removed
    	// from the default list, but can be re-added with the GODEBUG setting
    	// tls3des=1.
    	CipherSuites []uint16
    
    	// PreferServerCipherSuites is a legacy field and has no effect.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. tensorflow/BUILD

            "//conditions:default": ":libtensorflow_framework.so.%s" % VERSION_MAJOR,
        }),
    )
    
    # -------------------------------------------
    # New rules should be added above this target.
    # -------------------------------------------
    
    # TensorFlow uses several libraries that may also be used by applications
    # linking against the C and C++ APIs (such as libjpeg).  When we create
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. tensorflow/c/kernels_test.cc

        TF_Status* s = TF_NewStatus();
        SP_Stream stream = TF_GetStream(ctx, s);
        // Stream is always null if device is not a pluggable device. More test
        // cases will be added when pluggable device mechanism is supported.
        EXPECT_EQ(stream, nullptr);
        EXPECT_NE(TF_OK, TF_GetCode(s));
        TF_DeleteStatus(s);
      };
    
      SetupOp("StreamOp", "StreamOp", my_compute_func);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	for ; i < len(ctxt.Library); i++ {
    		lib := ctxt.Library[i]
    		if lib.Shlib == "" {
    			loadobjfile(ctxt, lib)
    		}
    	}
    	// At this point, the Go objects are "preloaded". Not all the symbols are
    	// added to the symbol table (only defined package symbols are). Looking
    	// up symbol by name may not get expected result.
    
    	iscgo = ctxt.LibraryByPkg["runtime/cgo"] != nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    			if !mustBeFirst(v) && v.Op != OpArg {
    				continue
    			}
    			slots := state.valueNames[v.ID]
    			reg, _ := state.f.getHome(v.ID).(*Register)
    			changed := state.processValue(v, slots, reg) // changed == added to state.changedVars
    			if changed {
    				for _, varID := range state.changedVars.contents() {
    					state.updateVar(VarID(varID), v.Block, BlockStart)
    				}
    				state.changedVars.clear()
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top