Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 599 for Avery (0.05 sec)

  1. src/go/build/deps_test.go

    		return nil, err
    	}
    	return pkgs, nil
    }
    
    func TestDependencies(t *testing.T) {
    	if !testenv.HasSrc() {
    		// Tests run in a limited file system and we do not
    		// provide access to every source file.
    		t.Skipf("skipping on %s/%s, missing full GOROOT", runtime.GOOS, runtime.GOARCH)
    	}
    
    	ctxt := Default
    	all, err := listStdPkgs(ctxt.GOROOT)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradients.cc

      // backprop gradients for all outputs of the ith-node.
      std::vector<int> pending_;
    
      // `ready` keeps track of nodes that have been completely
      // backpropped. Initially, for every output in `outputs_`, we add initial
      // gradients from `grad_inputs_`.
      std::deque<Node*> ready_;
    
      // The set of node ids in `inputs_`. Used to identify nodes at backprop
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. src/internal/trace/gc.go

    		} else {
    			// We haven't accumulated enough total precise
    			// mass yet to even reach our goal, so keep
    			// accumulating.
    			acc.bound = 1
    		}
    		// It's not worth checking percentiles every time, so
    		// just keep accumulating this band.
    		return false
    	}
    
    	// If we've found enough 0 utilizations, we can stop immediately.
    	return len(acc.wHeap) == acc.nWorst && acc.wHeap[0].MutatorUtil == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

          if (use_spmd) {
            // If XLA SPMD is enabled, host variables or non-variable per-replica
            // inputs, and outputs should take on replicate sharding, so that every
            // device gets the whole tensor(s) (and can slice them up later eg.
            // using dynamic-slice).
            sharding = kReplicateSharding;
          } else {
            // Otherwise, default to maximal sharding core 0.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Ints.java

      }
    
      /**
       * Returns the least value present in {@code array}.
       *
       * @param array a <i>nonempty</i> array of {@code int} values
       * @return the value present in {@code array} that is less than or equal to every other value in
       *     the array
       * @throws IllegalArgumentException if {@code array} is empty
       */
      @GwtIncompatible(
          "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

        }
    
        def "does not provide a default tool chain"() {
            expect:
            realizeModelElement("toolChains", NativeToolChainRegistry).isEmpty()
        }
    
        def "adds default flavor to every binary"() {
            when:
            project.model {
                components {
                    exe(NativeExecutableSpec)
                    lib(NativeLibrarySpec)
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      //
      // NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs )
      // sum_ncs = sum[priority level k] NCS(k)
      //
      // Bigger numbers mean a larger nominal concurrency limit,
      // at the expense of every other priority level.
      // This field has a default value of zero.
      // +optional
      optional int32 nominalConcurrencyShares = 1;
    
      // `lendablePercent` prescribes the fraction of the level's NominalCL that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashSet.java

     * than {@code size()}. Furthermore, this structure only depends on a fixed number of arrays; {@code
     * add(x)} operations <i>do not</i> create objects for the garbage collector to deal with, and for
     * every element added, the garbage collector will have to traverse {@code 1.5} references on
     * average, in the marking phase, not {@code 5.0} as in {@code java.util.HashSet}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Iterables.java

          return Collections2.safeContains(collection, element);
        }
        return Iterators.contains(iterable.iterator(), element);
      }
    
      /**
       * Removes, from an iterable, every element that belongs to the provided collection.
       *
       * <p>This method calls {@link Collection#removeAll} if {@code iterable} is a collection, and
       * {@link Iterators#removeAll} otherwise.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @param array a <i>nonempty</i> array of unsigned {@code int} values
       * @return the value present in {@code array} that is less than or equal to every other value in
       *     the array according to {@link #compare}
       * @throws IllegalArgumentException if {@code array} is empty
       */
      public static int min(int... array) {
        checkArgument(array.length > 0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top