Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
lib /
TAP /
Formatter /
Delete
Unzip
Name
Size
Permission
Date
Action
Console
[ DIR ]
drwxrwxrwx
2024-07-26 17:40
File
[ DIR ]
drwxrwxrwx
2024-07-26 17:40
Base.pm
11.59
KB
-rw-rw-rw-
2020-12-18 12:04
Color.pm
2.27
KB
-rw-rw-rw-
2020-12-18 12:04
Console.pm
1.95
KB
-rw-rw-rw-
2020-12-18 12:04
File.pm
850
B
-rw-rw-rw-
2020-12-18 12:04
Session.pm
4.87
KB
-rw-rw-rw-
2020-12-18 12:04
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.42 =cut our $VERSION = '3.42'; =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;