Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl /
5.22.1 /
TAP /
Formatter /
Delete
Unzip
Name
Size
Permission
Date
Action
Console
[ DIR ]
drwxr-xr-x
2020-10-27 07:29
File
[ DIR ]
drwxr-xr-x
2020-10-27 07:29
Base.pm
11.59
KB
-rw-r--r--
2020-10-19 12:57
Color.pm
3.2
KB
-rw-r--r--
2020-10-19 12:57
Console.pm
1.95
KB
-rw-r--r--
2020-10-19 12:57
File.pm
850
B
-rw-r--r--
2020-10-19 12:57
Session.pm
4.87
KB
-rw-r--r--
2020-10-19 12:57
Save
Rename
package TAP::Formatter::File; use strict; use warnings; use TAP::Formatter::File::Session; use POSIX qw(strftime); use base 'TAP::Formatter::Base'; =head1 NAME TAP::Formatter::File - Harness output delegate for file output =head1 VERSION Version 3.35 =cut our $VERSION = '3.35'; =head1 DESCRIPTION This provides file orientated output formatting for TAP::Harness. =head1 SYNOPSIS use TAP::Formatter::File; my $harness = TAP::Formatter::File->new( \%args ); =head2 C<< open_test >> See L<TAP::Formatter::Base> =cut sub open_test { my ( $self, $test, $parser ) = @_; my $session = TAP::Formatter::File::Session->new( { name => $test, formatter => $self, parser => $parser, } ); $session->header; return $session; } sub _should_show_count { return 0; } 1;