Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
share /
doc /
perl-CPAN-Meta /
t /
[ HOME SHELL ]
Name
Size
Permission
Action
data-fail
[ DIR ]
drwxr-xr-x
data-fixable
[ DIR ]
drwxr-xr-x
data-test
[ DIR ]
drwxr-xr-x
data-valid
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
parse-cpan-meta
[ DIR ]
drwxr-xr-x
00-report-prereqs.dd
7.88
KB
-rw-r--r--
00-report-prereqs.t
5.46
KB
-rw-r--r--
README-data.txt
622
B
-rw-r--r--
converter-bad.t
2.72
KB
-rw-r--r--
converter-fail.t
1.16
KB
-rw-r--r--
converter-fragments.t
4
KB
-rw-r--r--
converter.t
10.42
KB
-rw-r--r--
load-bad.t
805
B
-rw-r--r--
merge.t
5.74
KB
-rw-r--r--
meta-obj.t
6.62
KB
-rw-r--r--
no-index.t
1.82
KB
-rw-r--r--
optional_feature-merge.t
3.2
KB
-rw-r--r--
prereqs-finalize.t
2.24
KB
-rw-r--r--
prereqs-merge.t
2.37
KB
-rw-r--r--
prereqs.t
3.65
KB
-rw-r--r--
repository.t
4.39
KB
-rw-r--r--
save-load.t
3.67
KB
-rw-r--r--
validator.t
1.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : no-index.t
use strict; use warnings; use Test::More 0.88; use CPAN::Meta; delete $ENV{PERL_YAML_BACKEND}; delete $ENV{PERL_JSON_BACKEND}; delete $ENV{CPAN_META_JSON_BACKEND}; delete $ENV{CPAN_META_JSON_DECODER}; my %distmeta = ( name => 'Module-Billed', abstract => 'inscrutable', version => '1', author => [ 'Joe' ], release_status => 'stable', license => [ 'perl_5' ], 'meta-spec' => { version => '2', url => 'http://search.cpan.org/perldoc?CPAN::Meta::Spec', }, dynamic_config => 1, generated_by => 'Module::Build version 0.36', ); { my $meta = CPAN::Meta->new({ %distmeta }); ok( $meta->should_index_package('Foo::Bar::Baz'), 'we index any old package, without a no_index rule' ); ok( $meta->should_index_file('lib/Foo/Bar/Baz.pm'), 'we index any old file, without a no_index rule' ); } { my $meta = CPAN::Meta->new({ %distmeta, no_index => { package => [ 'Foo::Bar' ], namespace => [ 'Foo::Bar::Baz' ], } }); ok( ! $meta->should_index_package('Foo::Bar'), 'exclude a specific package' ); ok( $meta->should_index_package('Foo::Bar::Baz'), 'namespace X does not exclude package X' ); ok( ! $meta->should_index_package('Foo::Bar::Baz::Quux'), 'exclude something under a namespace' ); } { my $meta = CPAN::Meta->new({ %distmeta, no_index => { file => [ 'lib/Foo/Bar.pm' ], directory => [ 'lib/Foo/Bar/Baz' ], } }); ok( ! $meta->should_index_file('lib/Foo/Bar.pm'), 'exclude a specific file' ); ok( $meta->should_index_file('lib/Foo/Bar/Baz.pm'), 'do not exclude a file with a name like an excluded dir', ); ok( ! $meta->should_index_file('lib/Foo/Bar/Baz/Quux.pm'), 'exclude something under a directory' ); } done_testing; # vim: ts=2 sts=2 sw=2 et :
Close