Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,541 for kSuccess (0.14 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      const char* message() const { return message_.c_str(); }
    
      // Returns true iff the test part passed.
      bool passed() const { return type_ == kSuccess; }
    
      // Returns true iff the test part failed.
      bool failed() const { return type_ != kSuccess; }
    
      // Returns true iff the test part non-fatally failed.
      bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      const char* message() const { return message_.c_str(); }
    
      // Returns true iff the test part passed.
      bool passed() const { return type_ == kSuccess; }
    
      // Returns true iff the test part failed.
      bool failed() const { return type_ != kSuccess; }
    
      // Returns true iff the test part non-fatally failed.
      bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

    using ::testing::_;
    using ::testing::NiceMock;
    using ::testing::Return;
    using ::testing::Test;
    
    constexpr char kOk[] = "OK";
    constexpr char kInvalidArgument[] = "INVALID_ARGUMENT";
    constexpr char kSuccess[] = "kSuccess";
    constexpr char kFailure[] = "kFailure";
    
    class MockMlirOptimizationPass : public MlirOptimizationPass {
     public:
      MOCK_METHOD(llvm::StringRef, name, (), (const, override));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        /* metric description */
        "Track success/failure of Graph to MLIR conversions in function "
        "optimization pass",
        /* metric field */ "status");
    
    // The status metric field is used to record success/failure of mlir
    // function/graph optimization passes.
    constexpr char kSuccess[] = "kSuccess";
    constexpr char kFailure[] = "kFailure";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #define GTEST_NONFATAL_FAILURE_(message) \
      GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure)
    
    #define GTEST_SUCCESS_(message) \
      GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess)
    
    // Suppresses MSVC warnings 4072 (unreachable code) for the code following
    // statement if it returns or throws (or doesn't return or throw in some
    // situations).
    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. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #define GTEST_NONFATAL_FAILURE_(message) \
      GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure)
    
    #define GTEST_SUCCESS_(message) \
      GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess)
    
    // Suppresses MSVC warnings 4072 (unreachable code) for the code following
    // statement if it returns or throws (or doesn't return or throw in some
    // situations).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Success.java

     * <p>
     * This result type does permit {@code null} values. If it is an error for a certain
     * command to produce a {@code null} value that must be handled externally to this class.
     */
    public class Success extends Result<Object> {
    
        public Success(Object value) {
            super(value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dataflowActions/playSound/tests/success.sample.conf

    executable: gradle
    args: success
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 82 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dataflowActions/playSound/tests/success.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23 bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            ':santa-tracker:writeDebugAppMetadata': SUCCESS,
            ':santa-tracker:writeDebugModuleMetadata': SUCCESS,
            ':santa-tracker:writeDebugSigningConfigVersions': SUCCESS,
            ':snowballrun:assembleDebug': SUCCESS,
            ':snowballrun:checkDebugAarMetadata': SUCCESS,
            ':snowballrun:checkDebugDuplicateClasses': SUCCESS,
            ':snowballrun:compileDebugJavaWithJavac': FROM_CACHE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
Back to top