Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for EqFailure (0.15 sec)

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

    //
    // The ignoring_case parameter is true iff the assertion is a
    // *_STRCASEEQ*.  When it's true, the string " (ignoring case)" will
    // be inserted into the message.
    GTEST_API_ AssertionResult EqFailure(const char* expected_expression,
                                         const char* actual_expression,
                                         const std::string& expected_value,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    #endif
    
      if (expected == actual) {
        return AssertionSuccess();
      }
    
    #ifdef _MSC_VER
    # pragma warning(pop)          // Restores the warning state.
    #endif
    
      return EqFailure(expected_expression,
                       actual_expression,
                       FormatForComparisonFailureMessage(expected, actual),
                       FormatForComparisonFailureMessage(actual, expected),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    #endif
    
      if (expected == actual) {
        return AssertionSuccess();
      }
    
    #ifdef _MSC_VER
    # pragma warning(pop)          // Restores the warning state.
    #endif
    
      return EqFailure(expected_expression,
                       actual_expression,
                       FormatForComparisonFailureMessage(expected, actual),
                       FormatForComparisonFailureMessage(actual, expected),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    //
    // The ignoring_case parameter is true iff the assertion is a
    // *_STRCASEEQ*.  When it's true, the string " (ignoring case)" will
    // be inserted into the message.
    GTEST_API_ AssertionResult EqFailure(const char* expected_expression,
                                         const char* actual_expression,
                                         const std::string& expected_value,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. cluster/gce/windows/common.psm1

      )
      if ($Delay -gt 0) {
        Start-Sleep $Delay
      }
      Get-Service -ErrorAction Continue $Service | Select-Object * | Out-String
      & sc.exe queryex $Service
      & sc.exe qc $Service
      & sc.exe qfailure $Service
    }
    
    # Checks if a file should be written or overwritten by testing if it already
    # exists and checking the value of the global $REDO_STEPS variable. Emits an
    # informative message if the file already exists.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
Back to top