Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 142 for computations (0.22 sec)

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

     * java.util.concurrent.Executor) Futures.catching}.
     *
     * <p>This class implements all methods in {@code ListenableFuture}. Subclasses should provide a way
     * to set the result of the computation through the protected methods {@link #set(Object)}, {@link
     * #setFuture(ListenableFuture)} and {@link #setException(Throwable)}. Subclasses may also override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. src/crypto/rsa/rsa.go

    const noCheck = false
    
    // decrypt performs an RSA decryption of ciphertext into out. If check is true,
    // m^e is calculated and compared with ciphertext, in order to defend against
    // errors in the CRT computation.
    func decrypt(priv *PrivateKey, ciphertext []byte, check bool) ([]byte, error) {
    	if len(priv.Primes) <= 2 {
    		boring.Unreachable()
    	}
    
    	var (
    		err  error
    		m, c *bigmod.Nat
    		N    *bigmod.Modulus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gc.go

    	if cfg.ExperimentErr != nil || cfg.Experiment.FieldTrack || cfg.Experiment.PreemptibleLoops {
    		canDashC = false
    	}
    
    	if !canDashC {
    		return 1
    	}
    
    	// Decide how many concurrent backend compilations to allow.
    	//
    	// If we allow too many, in theory we might end up with p concurrent processes,
    	// each with c concurrent backend compiles, all fighting over the same resources.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

            decomposed_partitioned_call_callees) {
      for (auto& op : llvm::make_early_inc_range(block->getOperations())) {
        // TODO(yuanzx): Add a pass to remove identities in device computation.
        if (llvm::isa<TF::IdentityOp, TF::IdentityNOp, TF::StopGradientOp>(&op)) {
          op.replaceAllUsesWith(op.getOperands());
          op.erase();
        } else if (auto list = llvm::dyn_cast<TF::EmptyTensorListOp>(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       SMALL_DELAY_MS}, {@code MEDIUM_DELAY_MS}, {@code LONG_DELAY_MS}. The idea here is that a
     *       SHORT is always discriminable from zero time, and always allows enough time for the small
     *       amounts of computation (creating a thread, calling a few methods, etc) needed to reach a
     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. src/internal/bisect/bisect.go

    // Finally, note that New returns a nil Matcher when there is no pattern,
    // meaning that the target is not running under bisect at all,
    // so all changes should be enabled and none should be printed.
    // In that common case, the computation of the hash can be avoided entirely
    // by checking for m == nil first:
    //
    //	func ShouldEnable(file string, line int) bool {
    //		if m == nil {
    //			return true
    //		}
    //		h := bisect.Hash(file, line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

            // If user is not a `tf.TPUReplicatedOutput`, simply forward the first
            // replica output. Certain Graphs under V1 create `tf.Identity` users of
            // replicated ops to pin the TPU computation for execution.
            use.set(*replicate_outputs.begin());
            continue;
          }
    
          const int def_num_results = def->getNumResults();
          if (def_num_results != num_replicas)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  8. src/go/doc/reader.go

    	for embedded, isPtr := range typ.embedded {
    		// Once an embedded type is embedded as a pointer type
    		// all embedded types in those types are treated like
    		// pointer types for the purpose of the receiver type
    		// computation; i.e., embeddedIsPtr is sticky for this
    		// embedding hierarchy.
    		thisEmbeddedIsPtr := embeddedIsPtr || isPtr
    		for _, m := range embedded.methods {
    			// only top-level methods are embedded
    			if m.Level == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    // 966-975.
    // For journal quality proofs that these steps are complete, correct, and terminate see
    // Hudson, R., and Moss, J.E.B. Copying Garbage Collection without stopping the world.
    // Concurrency and Computation: Practice and Experience 15(3-5), 2003.
    //
    // 1. GC performs sweep termination.
    //
    //    a. Stop the world. This causes all Ps to reach a GC safe-point.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. pilot/pkg/model/context.go

    	mutex sync.RWMutex
    	// pushContext holds information during push generation. It is reset on config change, at the beginning
    	// of the pushAll. It will hold all errors and stats and possibly caches needed during the entire cache computation.
    	// DO NOT USE EXCEPT FOR TESTS AND HANDLING OF NEW CONNECTIONS.
    	// ALL USE DURING A PUSH SHOULD USE THE ONE CREATED AT THE
    	// START OF THE PUSH, THE GLOBAL ONE MAY CHANGE AND REFLECT A DIFFERENT
    	// CONFIG AND PUSH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top