Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 247 for Combine (0.76 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/DefaultDomainObjectSet.java

    import org.gradle.internal.ImmutableActionSet;
    
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    public class DefaultDomainObjectSet<T> extends DefaultDomainObjectCollection<T> implements DomainObjectSet<T> {
        // TODO: Combine these with MutationGuard
        private ImmutableActionSet<Void> beforeContainerChange = ImmutableActionSet.empty();
    
        public DefaultDomainObjectSet(Class<? extends T> type, CollectionCallbackActionDecorator decorator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train_test.py

        strategy_combinations.one_device_strategy_gpu,
        strategy_combinations.tpu_strategy,
    ]
    
    
    class MnistTrainTest(test_util.TensorFlowTestCase, parameterized.TestCase):
    
      @combinations.generate(combinations.combine(strategy=strategies))
      def testMnistTrain(self, strategy):
        accuracy = mnist_train.main(strategy)
        self.assertGreater(accuracy, 0.7, 'accuracy sanity check')
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 03:38:45 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/impl/none.h

      /// Equality operator.
      bool operator==(const None& other) const { return true; }
    
      /// Overload AbslHashValue.
      template <typename H>
      friend H AbslHashValue(H h, const None& n) {
        return H::combine(std::move(h), 34559);
      }
    
     private:
      // Private contructor.
      None() {}
    };
    
    // Defined in iostream.cc.
    std::ostream& operator<<(std::ostream& o, const None& none);
    
    }  // namespace impl
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 03 20:03:31 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top