Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.154
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
share /
perl5 /
ExtUtils /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxr-xr-x
2020-12-20 04:53
Helpers
[ DIR ]
drwxr-xr-x
2020-12-20 03:47
Liblist
[ DIR ]
drwxr-xr-x
2020-12-20 04:53
MakeMaker
[ DIR ]
drwxr-xr-x
2020-12-20 04:53
ParseXS
[ DIR ]
drwxr-xr-x
2020-12-20 03:22
Typemaps
[ DIR ]
drwxr-xr-x
2020-12-20 03:22
Command.pm
7.63
KB
-r--r--r--
2020-11-19 19:57
Config.pm
2.06
KB
-r--r--r--
2014-06-25 15:37
Helpers.pm
2.72
KB
-r--r--r--
2016-09-09 17:26
Install.pm
39.63
KB
-r--r--r--
2020-12-20 04:53
InstallPaths.pm
19.46
KB
-r--r--r--
2018-05-10 19:03
Installed.pm
14.03
KB
-r--r--r--
2020-12-20 04:53
Liblist.pm
9.29
KB
-r--r--r--
2020-11-19 19:57
MANIFEST.SKIP
971
B
-r--r--r--
2020-12-20 04:53
MM.pm
2.13
KB
-r--r--r--
2020-11-19 19:57
MM_AIX.pm
1.46
KB
-r--r--r--
2020-11-19 19:57
MM_Any.pm
80.9
KB
-r--r--r--
2020-11-19 19:57
MM_BeOS.pm
1.04
KB
-r--r--r--
2020-11-19 19:57
MM_Cygwin.pm
4.03
KB
-r--r--r--
2020-11-19 19:57
MM_DOS.pm
1.04
KB
-r--r--r--
2020-11-19 19:57
MM_Darwin.pm
1.45
KB
-r--r--r--
2020-11-19 19:57
MM_MacOS.pm
901
B
-r--r--r--
2020-11-19 19:57
MM_NW5.pm
5.35
KB
-r--r--r--
2020-11-19 19:57
MM_OS2.pm
3.15
KB
-r--r--r--
2020-11-19 19:57
MM_OS390.pm
2.22
KB
-r--r--r--
2020-11-19 19:57
MM_QNX.pm
907
B
-r--r--r--
2020-11-19 19:57
MM_UWIN.pm
994
B
-r--r--r--
2020-11-19 19:57
MM_Unix.pm
112.49
KB
-r--r--r--
2020-11-19 19:57
MM_VMS.pm
66.68
KB
-r--r--r--
2020-11-19 19:57
MM_VOS.pm
762
B
-r--r--r--
2020-11-19 19:57
MM_Win32.pm
14.71
KB
-r--r--r--
2020-11-19 19:57
MM_Win95.pm
1.26
KB
-r--r--r--
2020-11-19 19:57
MY.pm
676
B
-r--r--r--
2020-11-19 19:57
MakeMaker.pm
106.62
KB
-r--r--r--
2020-11-19 19:57
Manifest.pm
22.89
KB
-r--r--r--
2020-12-20 04:53
Mkbootstrap.pm
3.2
KB
-r--r--r--
2020-11-19 19:57
Mksymlists.pm
10.75
KB
-r--r--r--
2020-11-19 19:57
Packlist.pm
8.36
KB
-r--r--r--
2020-12-20 04:53
ParseXS.pm
65.01
KB
-r--r--r--
2017-07-31 15:46
ParseXS.pod
4.3
KB
-r--r--r--
2017-07-31 15:46
Typemaps.pm
26.17
KB
-r--r--r--
2017-07-31 15:46
testlib.pm
911
B
-r--r--r--
2020-11-19 19:57
xsubpp
4.95
KB
-r--r--r--
2017-07-31 15:46
Save
Rename
package ExtUtils::Config; $ExtUtils::Config::VERSION = '0.008'; use strict; use warnings; use Config; use Data::Dumper (); sub new { my ($pack, $args) = @_; return bless { values => ($args ? { %$args } : {}), }, $pack; } sub get { my ($self, $key) = @_; return exists $self->{values}{$key} ? $self->{values}{$key} : $Config{$key}; } sub exists { my ($self, $key) = @_; return exists $self->{values}{$key} || exists $Config{$key}; } sub values_set { my $self = shift; return { %{$self->{values}} }; } sub all_config { my $self = shift; return { %Config, %{ $self->{values}} }; } sub serialize { my $self = shift; return $self->{serialized} ||= Data::Dumper->new([$self->values_set])->Terse(1)->Sortkeys(1)->Dump; } 1; # ABSTRACT: A wrapper for perl's configuration __END__ =pod =encoding UTF-8 =head1 NAME ExtUtils::Config - A wrapper for perl's configuration =head1 VERSION version 0.008 =head1 SYNOPSIS my $config = ExtUtils::Config->new(); $config->get('installsitelib'); =head1 DESCRIPTION ExtUtils::Config is an abstraction around the %Config hash. By itself it is not a particularly interesting module by any measure, however it ties together a family of modern toolchain modules. =head1 METHODS =head2 new(\%config) Create a new ExtUtils::Config object. The values in C<\%config> are used to initialize the object. =head2 get($key) Get the value of C<$key>. If not overridden it will return the value in %Config. =head2 exists($key) Tests for the existence of $key. =head2 values_set() Get a hashref of all overridden values. =head2 all_config() Get a hashref of the complete configuration, including overrides. =head2 serialize() This method serializes the object to some kind of string. =head1 AUTHORS =over 4 =item * Ken Williams <kwilliams@cpan.org> =item * Leon Timmermans <leont@cpan.org> =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2006 by Ken Williams, Leon Timmermans. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut