Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for Combine (0.24 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          throw new UnsupportedOperationException("Not available on ImmutableSortedMap.Builder");
        }
    
        @CanIgnoreReturnValue
        Builder<K, V> combine(ImmutableSortedMap.Builder<K, V> other) {
          ensureCapacity(size + other.size);
          System.arraycopy(other.keys, 0, this.keys, this.size, other.size);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ```
    
    Note that the wildcard '*' has no special understanding of the '.' package separator. It's purely text based. So `--tests *.SomeTestClass` will match any package, regardless of its 'depth'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          if (!attr_or.ok()) return failure();
          rewriter.replaceOpWithNewOp<TF::ConstOp>(op, attr_or.value());
          return success();
        }
    
        // Extract individual tensor list element and combine them using the tf.Pack
        // op.
        Location loc = op.getLoc();
        llvm::SmallVector<Value, 4> values;
        values.reserve(tensors.size());
        for (const tensorflow::Tensor &tensor : tensors) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. cmd/iam.go

    		}
    
    	}
    
    	// Defensive code: Do not allow any operation if no policy is found in the session token
    	if !isOwnerDerived && len(policies) == 0 {
    		return false
    	}
    
    	// 2. Combine the mapped policies into a single combined policy.
    
    	var combinedPolicy policy.Policy
    	if !isOwnerDerived {
    		var err error
    		combinedPolicy, err = sys.store.GetPolicy(strings.Join(policies, ","))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    // b is a join point in a loop. In contrast with findIndVar, this
    // depends on facts established for b, which is why it happens when
    // visiting b.
    //
    // TODO: It would be nice to combine this with findIndVar.
    func addLocalInductiveFacts(ft *factsTable, b *Block) {
    	// This looks for a specific pattern of induction:
    	//
    	// 1. i1 = OpPhi(min, i2) in b
    	// 2. i2 = i1 + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This interface has support for accessing the test parameter value via
    // the GetParam() method.
    //
    // Use it with one of the parameter generator defining functions, like Range(),
    // Values(), ValuesIn(), Bool(), and Combine().
    //
    // class FooTest : public ::testing::TestWithParam<int> {
    //  protected:
    //   FooTest() {
    //     // Can use GetParam() here.
    //   }
    //   virtual ~FooTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This interface has support for accessing the test parameter value via
    // the GetParam() method.
    //
    // Use it with one of the parameter generator defining functions, like Range(),
    // Values(), ValuesIn(), Bool(), and Combine().
    //
    // class FooTest : public ::testing::TestWithParam<int> {
    //  protected:
    //   FooTest() {
    //     // Can use GetParam() here.
    //   }
    //   virtual ~FooTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    			//	ld: warning: option -s is obsolete and being ignored
    			// so do not pass any arguments (but we strip symbols below).
    		} else {
    			argv = append(argv, "-s")
    		}
    	}
    
    	// On darwin, whether to combine DWARF into executable.
    	// Only macOS supports unmapped segments such as our __DWARF segment.
    	combineDwarf := ctxt.IsDarwin() && !*FlagW && machoPlatform == PLATFORM_MACOS
    
    	switch ctxt.HeadType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/reflect/type.go

    	pp.PtrToThis = 0
    
    	// For the type structures linked into the binary, the
    	// compiler provides a good hash of the string.
    	// Create a good hash for the new string by using
    	// the FNV-1 hash's mixing function to combine the
    	// old hash and the new "*".
    	pp.Hash = fnv1(t.t.Hash, '*')
    
    	pp.Elem = at
    
    	pi, _ := ptrMap.LoadOrStore(t, &pp)
    	return &pi.(*ptrType).Type
    }
    
    func ptrTo(t *abi.Type) *abi.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

    import com.google.common.util.concurrent.ClosingFuture.ClosingFunction;
    import com.google.common.util.concurrent.ClosingFuture.Combiner;
    import com.google.common.util.concurrent.ClosingFuture.Combiner.AsyncCombiningCallable;
    import com.google.common.util.concurrent.ClosingFuture.Combiner.CombiningCallable;
    import com.google.common.util.concurrent.ClosingFuture.Combiner2.AsyncClosingFunction2;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top