Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for tuple_size (0.22 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    // 6.1.3.3 Tuple helper classes.
    
    template <typename Tuple> struct tuple_size;
    
    template <GTEST_0_TYPENAMES_(T)>
    struct tuple_size<GTEST_0_TUPLE_(T) > {
      static const int value = 0;
    };
    
    template <GTEST_1_TYPENAMES_(T)>
    struct tuple_size<GTEST_1_TUPLE_(T) > {
      static const int value = 1;
    };
    
    template <GTEST_2_TYPENAMES_(T)>
    struct tuple_size<GTEST_2_TUPLE_(T) > {
      static const int value = 2;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    // 6.1.3.3 Tuple helper classes.
    
    template <typename Tuple> struct tuple_size;
    
    
    $for j [[
    template <GTEST_$(j)_TYPENAMES_(T)>
    struct tuple_size<GTEST_$(j)_TUPLE_(T) > {
      static const int value = $j;
    };
    
    
    ]]
    template <int k, class Tuple>
    struct tuple_element {
      typedef typename gtest_internal::TupleElement<
          k < (tuple_size<Tuple>::value), k, Tuple>::type type;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    // 6.1.3.3 Tuple helper classes.
    
    template <typename Tuple> struct tuple_size;
    
    template <GTEST_0_TYPENAMES_(T)>
    struct tuple_size<GTEST_0_TUPLE_(T) > {
      static const int value = 0;
    };
    
    template <GTEST_1_TYPENAMES_(T)>
    struct tuple_size<GTEST_1_TUPLE_(T) > {
      static const int value = 1;
    };
    
    template <GTEST_2_TYPENAMES_(T)>
    struct tuple_size<GTEST_2_TUPLE_(T) > {
      static const int value = 2;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    // 6.1.3.3 Tuple helper classes.
    
    template <typename Tuple> struct tuple_size;
    
    
    $for j [[
    template <GTEST_$(j)_TYPENAMES_(T)>
    struct tuple_size<GTEST_$(j)_TUPLE_(T) > {
      static const int value = $j;
    };
    
    
    ]]
    template <int k, class Tuple>
    struct tuple_element {
      typedef typename gtest_internal::TupleElement<
          k < (tuple_size<Tuple>::value), k, Tuple>::type type;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // Helper function for printing a tuple.  T must be instantiated with
    // a tuple type.
    template <typename T>
    void PrintTupleTo(const T& t, ::std::ostream* os) {
      *os << "(";
      TuplePrefixPrinter< ::std::tr1::tuple_size<T>::value>::
          PrintPrefixTo(t, os);
      *os << ")";
    }
    
    // Prints the fields of a tuple tersely to a string vector, one
    // element for each field.  See the comment before
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // Helper function for printing a tuple.  T must be instantiated with
    // a tuple type.
    template <typename T>
    void PrintTupleTo(const T& t, ::std::ostream* os) {
      *os << "(";
      TuplePrefixPrinter< ::std::tr1::tuple_size<T>::value>::
          PrintPrefixTo(t, os);
      *os << ")";
    }
    
    // Prints the fields of a tuple tersely to a string vector, one
    // element for each field.  See the comment before
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/codegen.cc

        return errors::InvalidArgument("mismatch between fetch_size(",
                                       config.fetch_size(), ")+variable_size(",
                                       config.variable_size(), ") and tuple_size(",
                                       ps.result().tuple_shapes_size(), ")");
      }
      for (int i = 0; i < config.fetch_size(); ++i) {
        std::vector<std::pair<string, string>> rewrites;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // the way we intend.
    namespace std {
    namespace tr1 {
    using ::std::get;
    using ::std::make_tuple;
    using ::std::tuple;
    using ::std::tuple_element;
    using ::std::tuple_size;
    }
    }
    
    # elif GTEST_OS_SYMBIAN
    
    // On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to
    // use STLport's tuple implementation, which unfortunately doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // the way we intend.
    namespace std {
    namespace tr1 {
    using ::std::get;
    using ::std::make_tuple;
    using ::std::tuple;
    using ::std::tuple_element;
    using ::std::tuple_size;
    }
    }
    
    # elif GTEST_OS_SYMBIAN
    
    // On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to
    // use STLport's tuple implementation, which unfortunately doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api.cc

            }
            TFE_OpSetAttrBoolList(op, attr_name, b_vector.data(), b_size);
          }
          // Type
          if (const int type_size = default_value.list().type_size()) {
            absl::InlinedVector<unsigned int, 4> type_vector;
            type_vector.reserve(type_size);
            for (int i = 0; i < type_size; ++i) {
              type_vector.push_back(default_value.list().type(i));
            }
            TFE_OpSetAttrTypeList(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top