Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ASSERT_GE (0.14 sec)

  1. tensorflow/c/env_test.cc

        break;
      }
    
      ASSERT_TRUE(found) << "expected at least one temp dir";
    
      TF_StringStreamDone(tempdirs);
    }
    
    TEST(TestEnv, TestTimeFunctions) {
      ASSERT_GE(TF_NowSeconds(), 946684800);  // Midnight Jan 1, 2000
      ASSERT_GE(TF_NowMicros(), 946684800 * 1e6);
      ASSERT_GE(TF_NowNanos(), 946684800 * 1e9);
    }
    
    namespace {
    
    struct SomeThreadData {
      ::tensorflow::mutex mu;
      bool did_work = false;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 10 20:52:48 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

    #endif  // !defined(TENSORFLOW_NO_SHARED_OBJECTS)
      {
        TF_Buffer* op_list_buffer = TF_GetAllOpList();
        tensorflow::OpList op_list;
        op_list.ParseFromArray(op_list_buffer->data, op_list_buffer->length);
        ASSERT_GE(op_list.op_size(), 1);
        typedef tensorflow::protobuf::RepeatedPtrField<tensorflow::OpDef> OpDefs;
        const OpDefs& ops = op_list.op();
        bool found = std::find_if(ops.begin(), ops.end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_LT
    # define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_GE
    # define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_GT
    # define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2)
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_LT
    # define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_GE
    # define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_GT
    # define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2)
    #endif
    
    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