MCPcopy Create free account
hub / github.com/apache/arrow / current_time_ms

Function current_time_ms

cpp/src/arrow/util/logging_test.cc:35–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33namespace util {
34
35int64_t current_time_ms() {
36 std::chrono::milliseconds ms_since_epoch =
37 std::chrono::duration_cast<std::chrono::milliseconds>(
38 std::chrono::steady_clock::now().time_since_epoch());
39 return ms_since_epoch.count();
40}
41
42// This is not really test.
43// This file just print some information using the logging macro.

Callers

nothing calls this directly

Calls 1

countMethod · 0.45

Tested by

no test coverage detected