blob f11d549ec36d4af5bb73ec43c7a43017cdd31bf7 626 bytes (raw)
name: lib/dtas.rb # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| | # Copyright (C) 2013-2015 all contributors <dtas-all@nongnu.org>
# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
module DTAS # :nodoc:
# try to use the monotonic clock in Ruby >= 2.1, it is immune to clock
# offset adjustments and generates less garbage (Float vs Time object)
begin
::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
def self.now
::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
end
rescue NameError, NoMethodError
def self.now # Ruby <= 2.0
Time.now.to_f
end
end
end
require_relative 'dtas/compat_onenine'
require_relative 'dtas/spawn_fix'
|
debug log:
solving f11d549 ...
found f11d549 in https://80x24.org/dtas.git/
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://80x24.org/dtas.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).