Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for WithParamInterface (0.29 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

              EXPECT_THAT(buffer, Eq(expected_buffer));
            }
          }
        }
      }
    }
    
    class QuantizeConvModelTest : public QuantizeModelTest,
                                  public testing::WithParamInterface<TensorType> {
     protected:
      QuantizeConvModelTest() {
        tensor_type_ = GetParam();
        input_model_ = ReadModel(internal::kConvModelWith0Plus10Weights);
        readonly_model_ = input_model_->GetModel();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    template <typename T>
    class WithParamInterface {
     public:
      typedef T ParamType;
      virtual ~WithParamInterface() {}
    
      // The current parameter value. Is also available in the test fixture's
      // constructor. This member function is non-static, even though it only
      // references static data, to reduce the opportunity for incorrect uses
      // like writing 'WithParamInterface<bool>::GetParam()' for a test that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    template <typename T>
    class WithParamInterface {
     public:
      typedef T ParamType;
      virtual ~WithParamInterface() {}
    
      // The current parameter value. Is also available in the test fixture's
      // constructor. This member function is non-static, even though it only
      // references static data, to reduce the opportunity for incorrect uses
      // like writing 'WithParamInterface<bool>::GetParam()' for a test that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // testing::WithParamInterface<T>, where T is the type of the parameter
    // values. Inheriting from TestWithParam<T> satisfies that requirement because
    // TestWithParam<T> inherits from both Test and WithParamInterface. In more
    // complicated hierarchies, however, it is occasionally useful to inherit
    // separately from Test and WithParamInterface. For example:
    
    class BaseTest : public ::testing::Test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // testing::WithParamInterface<T>, where T is the type of the parameter
    // values. Inheriting from TestWithParam<T> satisfies that requirement because
    // TestWithParam<T> inherits from both Test and WithParamInterface. In more
    // complicated hierarchies, however, it is occasionally useful to inherit
    // separately from Test and WithParamInterface. For example:
    
    class BaseTest : public ::testing::Test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
Back to top