Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EXPECT_STRNE (0.14 sec)

  1. tensorflow/c/c_api_test.cc

      const string gpu_device_name = GPUDeviceName(sess);
      TF_DeleteSession(sess, s);
      CHECK_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      return gpu_device_name;
    }
    
    TEST(CAPI, Version) { EXPECT_STRNE("", TF_Version()); }
    
    TEST(CAPI, Status) {
      TF_Status* s = TF_NewStatus();
      EXPECT_EQ(TF_OK, TF_GetCode(s));
      EXPECT_EQ(string(), TF_Message(s));
      TF_SetStatus(s, TF_CANCELLED, "cancel");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // which is undefined.
    //
    // These macros evaluate their arguments exactly once.
    
    #define EXPECT_STREQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual)
    #define EXPECT_STRNE(s1, s2) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)
    #define EXPECT_STRCASEEQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual)
    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

    // which is undefined.
    //
    // These macros evaluate their arguments exactly once.
    
    #define EXPECT_STREQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual)
    #define EXPECT_STRNE(s1, s2) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)
    #define EXPECT_STRCASEEQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top