Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.9
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
share /
perl5 /
Module /
Build /
Delete
Unzip
Name
Size
Permission
Date
Action
Platform
[ DIR ]
drwxr-xr-x
2024-12-13 00:02
API.pod
67.18
KB
-r--r--r--
2024-12-13 00:02
Authoring.pod
10.75
KB
-r--r--r--
2024-12-13 00:02
Base.pm
161.92
KB
-r--r--r--
2024-12-13 00:02
Bundling.pod
4.99
KB
-r--r--r--
2024-12-13 00:02
Compat.pm
18.85
KB
-r--r--r--
2024-12-13 00:02
Config.pm
1.08
KB
-r--r--r--
2024-12-13 00:02
ConfigData.pm
6.68
KB
-r--r--r--
2024-12-13 00:02
Cookbook.pm
16.93
KB
-r--r--r--
2024-12-13 00:02
Dumper.pm
454
B
-r--r--r--
2024-12-13 00:02
Notes.pm
8.12
KB
-r--r--r--
2024-12-13 00:02
PPMMaker.pm
4.43
KB
-r--r--r--
2024-12-13 00:02
PodParser.pm
1.4
KB
-r--r--r--
2024-12-13 00:02
Save
Rename
package Module::Build::Config; use strict; use warnings; our $VERSION = '0.4234'; $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;