Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
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
2021-08-24 17:00
API.pod
66.87
KB
-rw-r--r--
2014-06-10 08:34
Authoring.pod
10.75
KB
-rw-r--r--
2014-06-10 08:34
Base.pm
162.47
KB
-rw-r--r--
2014-06-10 08:34
Bundling.pod
4.96
KB
-rw-r--r--
2014-06-10 08:34
Compat.pm
17.96
KB
-rw-r--r--
2014-06-10 08:34
Config.pm
1.08
KB
-rw-r--r--
2014-06-10 08:34
ConfigData.pm
6.96
KB
-rw-r--r--
2014-06-10 08:34
Cookbook.pm
16.93
KB
-rw-r--r--
2014-06-10 08:34
Dumper.pm
446
B
-rw-r--r--
2014-06-10 08:34
ModuleInfo.pm
625
B
-rw-r--r--
2014-06-10 08:34
Notes.pm
8.33
KB
-rw-r--r--
2014-06-10 08:34
PPMMaker.pm
4.54
KB
-rw-r--r--
2014-06-10 08:34
PodParser.pm
1.31
KB
-rw-r--r--
2014-06-10 08:34
Version.pm
361
B
-rw-r--r--
2014-06-10 08:34
YAML.pm
401
B
-rw-r--r--
2014-06-10 08:34
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;