Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 897 for SAME (0.04 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

      public void testConstructor2NPE() {
        double[] a = null;
        assertThrows(NullPointerException.class, () -> new AtomicDoubleArray(a));
      }
    
      /** constructor with array is of same size and has all elements */
      public void testConstructor2() {
        AtomicDoubleArray aa = new AtomicDoubleArray(VALUES);
        assertEquals(VALUES.length, aa.length());
        for (int i = 0; i < VALUES.length; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    [NOTE]
    ====
    GradleRunner supports the same range of Gradle versions as the Tooling API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/internal/trace/event.go

    // for other traces taken on the same machine using the same clock
    // (i.e. no reboots in between).
    //
    // The actual absolute value of the timestamp is only meaningful in
    // relation to other timestamps from the same clock.
    //
    // BUG: Timestamps coming from traces on Windows platforms are
    // only comparable with timestamps from the same trace. Timestamps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/nat.go

    		x.limbs[i] = uint(limbs[i])
    	}
    	return x
    }
    
    // Bytes returns x as a zero-extended big-endian byte slice. The size of the
    // slice will match the size of m.
    //
    // x must have the same size as m and it must be reduced modulo m.
    func (x *Nat) Bytes(m *Modulus) []byte {
    	i := m.Size()
    	bytes := make([]byte, i)
    	for _, limb := range x.limbs {
    		for j := 0; j < _S; j++ {
    			i--
    			if i < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

    ==============================================================================*/
    
    // This pass clusters the TensorFlow ops by host. The program generated by this
    // pass will have one function per host where all operations in the same
    // function are placed on the same host. Each result of the per-host function
    // will have a "tf.device" attribute which specifies the device assignment of
    // the result.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/gc.go

    // built from two source files with the same name.
    func pluginPath(a *Action) string {
    	p := a.Package
    	if p.ImportPath != "command-line-arguments" {
    		return p.ImportPath
    	}
    	h := sha1.New()
    	buildID := a.buildID
    	if a.Mode == "link" {
    		// For linking, use the main package's build ID instead of
    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_device_context.cc

                                                  Tensor* output_tensor,
                                                  StatusCallback done) const {
      done(errors::Unimplemented("XLA->XLA same-device copies not implemented."));
    }
    
    void XlaDeviceContext::CopyCPUTensorToDevice(const Tensor* cpu_tensor,
                                                 Device* device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableBiMap.java

      }
    
      /**
       * Returns an immutable bimap containing the given entries. The returned bimap iterates over
       * entries in the same order as the original iterable.
       *
       * @throws IllegalArgumentException if two keys have the same value or two values have the same
       *     key
       * @throws NullPointerException if any key, value, or entry is null
       * @since 19.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        }
      };
    
      // If `tf.resource_arg_unique_id` argument attributes are present for
      // resource-type arguments, use those to decide which arguments correspond to
      // the same resource (and thus need the same ID). Otherwise, they must not
      // alias.
      const bool has_arg_unique_id_attrs =
          llvm::any_of(func_op.getArguments(), [&](const BlockArgument& arg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    static llvm::SmallVector<Operation *> GetClusteringCandidates(
        const ClusteringState &state, Source source) {
      // Users of operation result must be in the same block and placed on the same
      // device.
      if (auto op = source.dyn_cast<Operation *>()) {
        auto range = llvm::make_filter_range(op->getUsers(), [&](Operation *user) {
          bool same_block = user->getBlock() == op->getBlock();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top