Linux vps-4302913.novaexata.com.br 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.14
166 Domain
7.3.33
wwnova
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
share /
perl5 /
Test /
Deep /
[ HOME SHELL ]
Name
Size
Permission
Action
Cache
[ DIR ]
drwxr-xr-x
All.pm
702
B
-r--r--r--
Any.pm
908
B
-r--r--r--
Array.pm
477
B
-r--r--r--
ArrayEach.pm
517
B
-r--r--r--
ArrayElementsOnly.pm
677
B
-r--r--r--
ArrayLength.pm
374
B
-r--r--r--
ArrayLengthOnly.pm
654
B
-r--r--r--
Blessed.pm
564
B
-r--r--r--
Boolean.pm
558
B
-r--r--r--
Cache.pm
1.01
KB
-r--r--r--
Class.pm
363
B
-r--r--r--
Cmp.pm
1.13
KB
-r--r--r--
Code.pm
705
B
-r--r--r--
Hash.pm
1.38
KB
-r--r--r--
HashEach.pm
326
B
-r--r--r--
HashElements.pm
1.24
KB
-r--r--r--
HashKeys.pm
999
B
-r--r--r--
HashKeysOnly.pm
1.5
KB
-r--r--r--
Ignore.pm
186
B
-r--r--r--
Isa.pm
538
B
-r--r--r--
ListMethods.pm
288
B
-r--r--r--
MM.pm
922
B
-r--r--r--
Methods.pm
1.28
KB
-r--r--r--
NoTest.pm
788
B
-r--r--r--
None.pm
869
B
-r--r--r--
Number.pm
1.06
KB
-r--r--r--
Obj.pm
522
B
-r--r--r--
Ref.pm
490
B
-r--r--r--
RefType.pm
547
B
-r--r--r--
Regexp.pm
1.38
KB
-r--r--r--
RegexpMatches.pm
662
B
-r--r--r--
RegexpOnly.pm
521
B
-r--r--r--
RegexpRef.pm
639
B
-r--r--r--
RegexpRefOnly.pm
423
B
-r--r--r--
RegexpVersion.pm
280
B
-r--r--r--
ScalarRef.pm
432
B
-r--r--r--
ScalarRefOnly.pm
384
B
-r--r--r--
Set.pm
3.61
KB
-r--r--r--
Shallow.pm
597
B
-r--r--r--
Stack.pm
1.05
KB
-r--r--r--
String.pm
369
B
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Number.pm
use strict; use warnings; package Test::Deep::Number; use Test::Deep::Cmp; use Scalar::Util; sub init { my $self = shift; $self->{val} = shift(@_) + 0; $self->{tolerance} = shift; } sub descend { my $self = shift; my $got = shift; $self->data->{got_string} = $got; { no warnings 'numeric'; $got += 0; } $self->data->{got} = $got; if (defined(my $tolerance = $self->{tolerance})) { return abs($got - $self->{val}) <= $tolerance; } else { return $got == $self->{val}; } } sub diag_message { my $self = shift; my $where = shift; return "Comparing $where as a number"; } sub renderGot { my $self = shift; my $val = shift; my $got_string = $self->data->{got_string}; if ("$val" ne "$got_string") { $got_string = $self->SUPER::renderGot($got_string); return "$val ($got_string)" } else { return $val; } } sub renderExp { my $self = shift; my $exp = $self->{val}; if (defined(my $tolerance = $self->{tolerance})) { return "$exp +/- $tolerance"; } else { return $exp; } } 1;
Close