Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Implementation (0.2 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // units.
    //
    // If you are designing an interface or concept, you can define a
    // suite of type-parameterized tests to verify properties that any
    // valid implementation of the interface/concept should have.  Then,
    // each implementation can easily instantiate the test suite to verify
    // that it conforms to the requirements, without having to write
    // similar tests repeatedly.  Here's an example:
    
    #if 0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // executing in the context of the death test child process.  Tools such as
    // Valgrind heap checkers may need this to modify their behavior in death
    // tests.  IMPORTANT: This is an internal utility.  Using it may break the
    // implementation of death tests.  User code MUST NOT use it.
    GTEST_API_ bool InDeathTestChild();
    
    }  // namespace internal
    
    // The following macros are useful for writing death tests.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // units.
    //
    // If you are designing an interface or concept, you can define a
    // suite of type-parameterized tests to verify properties that any
    // valid implementation of the interface/concept should have.  Then,
    // each implementation can easily instantiate the test suite to verify
    // that it conforms to the requirements, without having to write
    // similar tests repeatedly.  Here's an example:
    
    #if 0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        mutable scoped_ptr<const T> value_;
      };  // class ValuesInIteratorRangeGenerator::Iterator
    
      // No implementation - assignment is unsupported.
      void operator=(const ValuesInIteratorRangeGenerator& other);
    
      const ContainerType container_;
    };  // class ValuesInIteratorRangeGenerator
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Stores a parameter value and later creates tests parameterized with that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    struct TraceInfo;                      // Information about a trace point.
    class ScopedTrace;                     // Implements scoped trace.
    class TestInfoImpl;                    // Opaque implementation of TestInfo
    class UnitTestImpl;                    // Opaque implementation of UnitTest
    
    // How many times InitGoogleTest() has been called.
    GTEST_API_ extern int g_init_gtest_count;
    
    // The text used in failure messages to indicate the start of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compiler.h

      }
      DeviceCompilerClient<ExecutableType, ClientType>* compiler_client() {
        return compiler_client_.get();
      }
    
      string DebugString() const override;
    
     private:
      // Common implementation of Compile and CompileSingleOp. The `OpKernelContext`
      // parameter is always null for the former.
      Status CompileImpl(
          const XlaCompiler::CompileOptions& compile_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util.h

     private:
      xla::LocalClient* client_;
      se::DeviceMemoryAllocator* xla_allocator_;
      bool allocate_xla_tensors_;
      bool use_multiple_streams_;
      int device_ordinal_;
    };
    
    // A simple TensorBuffer implementation that allows us to create Tensors that
    // take ownership of pre-allocated memory.
    class XlaTensorBuffer : public TensorBuffer {
     public:
      XlaTensorBuffer(const void* ptr, size_t expected_size, size_t actual_size,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/flags.h

      // from an XLA cluster.
      bool tf_xla_check_cluster_output_numerics;
    
      // Disables all constant folding. The primary use for this is for testing to
      // guarantee that tests are run on XLA and not on TF's CPU implementation.
      bool tf_xla_disable_constant_folding;
    
      // Disables full embedding pipelining when true. Instead, strict SparseCore
      // TensorCore sequencing will be used.
      bool tf_xla_disable_full_embedding_pipelining;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

        typename T6 = void, typename T7 = void, typename T8 = void,
        typename T9 = void>
    class tuple;
    
    // Anything in namespace gtest_internal is Google Test's INTERNAL
    // IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code.
    namespace gtest_internal {
    
    // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // A user can override this behavior for a class type Foo by defining
    // a << operator in the namespace where Foo is defined.
    //
    // We put this operator in namespace 'internal2' instead of 'internal'
    // to simplify the implementation, as much code in 'internal' needs to
    // use << in STL, which would conflict with our own << were it defined
    // in 'internal'.
    //
    // Note that this operator<< takes a generic std::basic_ostream<Char,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top