Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExpectHasNoSubstr (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/dump_graph_test.cc

    namespace tensorflow {
    namespace {
    
    void ExpectHasSubstr(const string& s, const string& expected) {
      EXPECT_TRUE(absl::StrContains(s, expected))
          << "'" << s << "' does not contain '" << expected << "'";
    }
    
    void ExpectHasNoSubstr(const string& s, const string& expected) {
      EXPECT_FALSE(absl::StrContains(s, expected))
          << "'" << s << "' should not contain '" << expected << "'";
    }
    
    // WritableFile that simply concats into string.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top