Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PartialMatch (0.23 sec)

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

      }
      static bool PartialMatch(const ::std::string& str, const RE& re) {
        return PartialMatch(str.c_str(), re);
      }
    
    #if GTEST_HAS_GLOBAL_STRING
    
      static bool FullMatch(const ::string& str, const RE& re) {
        return FullMatch(str.c_str(), re);
      }
      static bool PartialMatch(const ::string& str, const RE& re) {
        return PartialMatch(str.c_str(), re);
      }
    
    #endif  // GTEST_HAS_GLOBAL_STRING
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      }
      static bool PartialMatch(const ::std::string& str, const RE& re) {
        return PartialMatch(str.c_str(), re);
      }
    
    #if GTEST_HAS_GLOBAL_STRING
    
      static bool FullMatch(const ::string& str, const RE& re) {
        return FullMatch(str.c_str(), re);
      }
      static bool PartialMatch(const ::string& str, const RE& re) {
        return PartialMatch(str.c_str(), re);
      }
    
    #endif  // GTEST_HAS_GLOBAL_STRING
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

              << "Death tests are not supported on this platform.\n" \
              << "Statement '" #statement "' cannot be verified."; \
        } else if (::testing::internal::AlwaysFalse()) { \
          ::testing::internal::RE::PartialMatch(".*", (regex)); \
          GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
          terminator; \
        } else \
          ::testing::Message()
    
    #endif  // GTEST_HAS_DEATH_TEST
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/tools/tflite_op_coverage_spec_getters_gen.cc

                continue;
              }
            }
          }
    
          if (per_axis) {
            std::string op_extra_declaration = op.getExtraClassDeclaration().str();
            bool per_axis_support = RE2::PartialMatch(
                absl::StrReplaceAll(op_extra_declaration, {{"\n", " "}}),
                *per_channel_support_regex);
            if (per_axis_support) result.emplace_back(op_name);
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

              << "Death tests are not supported on this platform.\n" \
              << "Statement '" #statement "' cannot be verified."; \
        } else if (::testing::internal::AlwaysFalse()) { \
          ::testing::internal::RE::PartialMatch(".*", (regex)); \
          GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
          terminator; \
        } else \
          ::testing::Message()
    
    #endif  // GTEST_HAS_DEATH_TEST
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top