Home
last modified time | relevance | path

Searched refs:secs (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/third-party/folly/folly/detail/
DFutex.cpp85 auto secs = duration_cast<time_t_seconds>(epoch); in timeSpecFromTimePoint() local
86 auto nanos = duration_cast<long_nanos>(epoch - secs); in timeSpecFromTimePoint()
87 struct timespec result = {secs.count(), nanos.count()}; in timeSpecFromTimePoint()
/rocksdb-6.9/buckifier/
Dutil.py91 secs = (execution_time % 60)
92 print("\t>time spent: %d minutes %d seconds" % (mins, secs))
/rocksdb-6.9/tools/
Dbenchmark.sh155 uptime=$( grep ^Uptime\(secs $test_out | tail -1 | awk '{ printf "%.0f", $2 }' )