ACIL FM
Dark
Refresh
Current DIR:
/usr/share/perl5/vendor_perl/YAML
/
usr
share
perl5
vendor_perl
YAML
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
Dumper
-
chmod
Open
Rename
Delete
Loader
-
chmod
Open
Rename
Delete
Any.pm
2.6 MB
chmod
View
DL
Edit
Rename
Delete
Any.pod
2.82 MB
chmod
View
DL
Edit
Rename
Delete
Dumper.pm
16.69 MB
chmod
View
DL
Edit
Rename
Delete
Dumper.pod
776 B
chmod
View
DL
Edit
Rename
Delete
Error.pm
5.63 MB
chmod
View
DL
Edit
Rename
Delete
Error.pod
666 B
chmod
View
DL
Edit
Rename
Delete
Loader.pm
26.36 MB
chmod
View
DL
Edit
Rename
Delete
Loader.pod
767 B
chmod
View
DL
Edit
Rename
Delete
Marshall.pm
867 B
chmod
View
DL
Edit
Rename
Delete
Marshall.pod
656 B
chmod
View
DL
Edit
Rename
Delete
Mo.pm
3.24 MB
chmod
View
DL
Edit
Rename
Delete
Node.pm
4.32 MB
chmod
View
DL
Edit
Rename
Delete
Node.pod
2.48 MB
chmod
View
DL
Edit
Rename
Delete
Tag.pm
216 B
chmod
View
DL
Edit
Rename
Delete
Tag.pod
538 B
chmod
View
DL
Edit
Rename
Delete
Types.pm
6.44 MB
chmod
View
DL
Edit
Rename
Delete
Types.pod
738 B
chmod
View
DL
Edit
Rename
Delete
Edit file: /usr/share/perl5/vendor_perl/YAML/Any.pm
use strict; use warnings; package YAML::Any; our $VERSION = '1.30'; use Exporter (); @YAML::Any::ISA = 'Exporter'; @YAML::Any::EXPORT = qw(Dump Load); @YAML::Any::EXPORT_OK = qw(DumpFile LoadFile); my @dump_options = qw( UseCode DumpCode SpecVersion Indent UseHeader UseVersion SortKeys AnchorPrefix UseBlock UseFold CompressSeries InlineSeries UseAliases Purity Stringify ); my @load_options = qw( UseCode LoadCode Preserve ); my @implementations = qw( YAML::XS YAML::Syck YAML::Old YAML YAML::Tiny ); sub import { __PACKAGE__->implementation; goto &Exporter::import; } sub Dump { no strict 'refs'; no warnings 'once'; my $implementation = __PACKAGE__->implementation; for my $option (@dump_options) { my $var = "$implementation\::$option"; my $value = $$var; local $$var; $$var = defined $value ? $value : ${"YAML::$option"}; } return &{"$implementation\::Dump"}(@_); } sub DumpFile { no strict 'refs'; no warnings 'once'; my $implementation = __PACKAGE__->implementation; for my $option (@dump_options) { my $var = "$implementation\::$option"; my $value = $$var; local $$var; $$var = defined $value ? $value : ${"YAML::$option"}; } return &{"$implementation\::DumpFile"}(@_); } sub Load { no strict 'refs'; no warnings 'once'; my $implementation = __PACKAGE__->implementation; for my $option (@load_options) { my $var = "$implementation\::$option"; my $value = $$var; local $$var; $$var = defined $value ? $value : ${"YAML::$option"}; } return &{"$implementation\::Load"}(@_); } sub LoadFile { no strict 'refs'; no warnings 'once'; my $implementation = __PACKAGE__->implementation; for my $option (@load_options) { my $var = "$implementation\::$option"; my $value = $$var; local $$var; $$var = defined $value ? $value : ${"YAML::$option"}; } return &{"$implementation\::LoadFile"}(@_); } sub order { return @YAML::Any::_TEST_ORDER if @YAML::Any::_TEST_ORDER; return @implementations; } sub implementation { my @order = __PACKAGE__->order; for my $module (@order) { my $path = $module; $path =~ s/::/\//g; $path .= '.pm'; return $module if exists $INC{$path}; eval "require $module; 1" and return $module; } croak("YAML::Any couldn't find any of these YAML implementations: @order"); } sub croak { require Carp; Carp::croak(@_); } 1;
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply