Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
Module /
Build /
Delete
Unzip
Name
Size
Permission
Date
Action
Platform
[ DIR ]
drwxr-xr-x
2019-06-17 23:11
API.pod
66.87
KB
-rw-r--r--
2014-09-16 21:54
Authoring.pod
10.75
KB
-rw-r--r--
2014-09-16 21:54
Base.pm
162.47
KB
-rw-r--r--
2014-09-16 21:54
Bundling.pod
4.96
KB
-rw-r--r--
2014-09-16 21:54
Compat.pm
17.96
KB
-rw-r--r--
2014-09-16 21:54
Config.pm
1.08
KB
-rw-r--r--
2014-09-16 21:54
ConfigData.pm
6.96
KB
-rw-r--r--
2014-09-16 21:54
Cookbook.pm
16.93
KB
-rw-r--r--
2014-09-16 21:54
Dumper.pm
446
B
-rw-r--r--
2014-09-16 21:54
ModuleInfo.pm
625
B
-rw-r--r--
2014-09-16 21:54
Notes.pm
8.33
KB
-rw-r--r--
2014-09-16 21:54
PPMMaker.pm
4.54
KB
-rw-r--r--
2014-09-16 21:54
PodParser.pm
1.31
KB
-rw-r--r--
2014-09-16 21:54
Version.pm
361
B
-rw-r--r--
2014-09-16 21:54
YAML.pm
401
B
-rw-r--r--
2014-09-16 21:54
Save
Rename
package Module::Build::Config; use strict; use vars qw($VERSION); $VERSION = '0.4005'; $VERSION = eval $VERSION; use Config; sub new { my ($pack, %args) = @_; return bless { stack => {}, values => $args{values} || {}, }, $pack; } sub get { my ($self, $key) = @_; return $self->{values}{$key} if ref($self) && exists $self->{values}{$key}; return $Config{$key}; } sub set { my ($self, $key, $val) = @_; $self->{values}{$key} = $val; } sub push { my ($self, $key, $val) = @_; push @{$self->{stack}{$key}}, $self->{values}{$key} if exists $self->{values}{$key}; $self->{values}{$key} = $val; } sub pop { my ($self, $key) = @_; my $val = delete $self->{values}{$key}; if ( exists $self->{stack}{$key} ) { $self->{values}{$key} = pop @{$self->{stack}{$key}}; delete $self->{stack}{$key} unless @{$self->{stack}{$key}}; } return $val; } sub values_set { my $self = shift; return undef unless ref($self); return $self->{values}; } sub all_config { my $self = shift; my $v = ref($self) ? $self->{values} : {}; return {%Config, %$v}; } 1;