Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DescribeNegationTo (0.15 sec)

  1. tensorflow/cc/saved_model/test_utils.h

                           ::testing::MatchResultListener*) const {
        return p.DebugString() == expected_;
      }
    
      void DescribeTo(::std::ostream* os) const { *os << expected_; }
      void DescribeNegationTo(::std::ostream* os) const {
        *os << "not equal to expected message: " << expected_;
      }
    
     private:
      const std::string expected_;
    };
    
    inline ::testing::PolymorphicMatcher<ProtoStringMatcher> EqualsProto(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 31 23:00:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/fill_quantization_options_test.cc

      bool MatchAndExplain(const Message& p, testing::MatchResultListener*) const {
        return p.SerializeAsString() == expected_;
      }
    
      void DescribeTo(::std::ostream* os) const { *os << expected_; }
      void DescribeNegationTo(::std::ostream* os) const {
        *os << "not equal to expected message: " << expected_;
      }
    
     private:
      const std::string expected_;
    };
    
    inline ::testing::PolymorphicMatcher<ProtoStringMatcher> EqualsProto(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 09:05:02 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils_test.cc

      bool MatchAndExplain(const Message& p, testing::MatchResultListener*) const {
        return p.SerializeAsString() == expected_;
      }
    
      void DescribeTo(::std::ostream* os) const { *os << expected_; }
      void DescribeNegationTo(::std::ostream* os) const {
        *os << "not equal to expected message: " << expected_;
      }
    
     private:
      const std::string expected_;
    };
    
    inline ::testing::PolymorphicMatcher<ProtoStringMatcher> EqualsProto(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 12 04:22:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top