Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 751 for Combine (0.21 sec)

  1. src/cmd/compile/internal/ssa/fuse_comparisons.go

    		// significantly so we shouldn't be overly conservative.
    		if !canSpeculativelyExecute(b) {
    			return false
    		}
    
    		// Logically combine the control values for p and b.
    		v := b.NewValue0(bc.Pos, op, bc.Type)
    		v.AddArg(pc)
    		v.AddArg(bc)
    
    		// Set the combined control value as the control value for b.
    		b.SetControl(v)
    
    		// Modify p so that it jumps directly to b.
    		p.removeEdge(i)
    		p.Kind = BlockPlain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!
    //
    // Currently Google Test supports at most $n arguments in Values,
    // and at most $maxtuple arguments in Combine. Please contact
    // ******@****.*** if you need more.
    // Please note that the number of arguments to Combine is limited
    // by the maximum arity of the implementation of tr1::tuple which is
    // currently set at $maxtuple.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/constant_loading_test.cc

    INSTANTIATE_TEST_SUITE_P(
        ConstantIntegerDtypesTest, ConstantTest,
        ::testing::Combine(
            ::testing::ValuesIn(testing::DataTypeSetToVector(kDataTypeIsInteger)),
            ::testing::ValuesIn(testing::InterestingShapes()),
            ::testing::Values(false, true)));
    
    INSTANTIATE_TEST_SUITE_P(
        ConstantFloatingDtypesTest, ConstantTest,
        ::testing::Combine(::testing::Values(DT_FLOAT, DT_DOUBLE),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/TableCollectors.java

            (Supplier<ImmutableTable.Builder<R, C, V>>) ImmutableTable.Builder::new,
            (builder, t) ->
                builder.put(rowFunction.apply(t), columnFunction.apply(t), valueFunction.apply(t)),
            ImmutableTable.Builder::combine,
            ImmutableTable.Builder::build);
      }
    
      static <T extends @Nullable Object, R, C, V>
          Collector<T, ?, ImmutableTable<R, C, V>> toImmutableTable(
              Function<? super T, ? extends R> rowFunction,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/gradients/array_grad_test.cc

    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
                           /*use_function*/ ::testing::Values(true, false)));
    #else
    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

          }
        }
    
        @Override
        protected void processRemaining(ByteBuffer bb) {
          if (finished) {
            return;
          }
          crc0 = combine(0, crc0);
          crc0 = combine(crc0, crc1);
          crc0 = combine(crc0, crc2);
          crc0 = combine(crc0, crc3);
          while (bb.hasRemaining()) {
            crc0 = (crc0 >>> 8) ^ BYTE_TABLE[(bb.get() ^ crc0) & 0xFF];
          }
          finished = true;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  7. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *   <ol type="A">
         *   <li> retrieve the 'combine.self' attribute on the dominant node, and try to match against 'override'...
         *        if it matches 'override', then set mergeSelf == false...the dominant node suppresses the recessive one
         *        completely.</li>
         *   <li> otherwise, use the default value for mergeSelf, which is true...this is the same as specifying
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/saved_variable_loading_test.cc

    INSTANTIATE_TEST_SUITE_P(
        SavedVariableIntegerDtypesTest, SavedVariableLoadingTest,
        ::testing::Combine(
            ::testing::ValuesIn(testing::DataTypeSetToVector(kDataTypeIsInteger)),
            ::testing::ValuesIn(testing::InterestingShapes())));
    
    INSTANTIATE_TEST_SUITE_P(
        SavedVariableFloatingDtypesTest, SavedVariableLoadingTest,
        ::testing::Combine(::testing::Values(DT_FLOAT, DT_DOUBLE),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/local/analyze_test.go

    	YamlN1I1V1 = `
    apiVersion: testdata.istio.io/v1alpha1
    kind: Kind1
    metadata:
      namespace: n1
      name: i1
    spec:
      n1_i1: v1
    `
    	blankCombinedAnalyzer = analysis.Combine("testCombined", blankTestAnalyzer)
    )
    
    // Metadata implements Analyzer
    func (a *testAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:   "testAnalyzer",
    		Inputs: a.inputs,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/Crc32cHashFunction.java

          }
        }
    
        @Override
        protected void processRemaining(ByteBuffer bb) {
          if (finished) {
            return;
          }
          crc0 = combine(0, crc0);
          crc0 = combine(crc0, crc1);
          crc0 = combine(crc0, crc2);
          crc0 = combine(crc0, crc3);
          while (bb.hasRemaining()) {
            crc0 = (crc0 >>> 8) ^ BYTE_TABLE[(bb.get() ^ crc0) & 0xFF];
          }
          finished = true;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
Back to top