Hackfut Security File Manager
Current Path:
/usr/lib64/perl5
usr
/
lib64
/
perl5
/
📁
..
📁
5.10.0
📁
B
📄
B.pm
(25.1 KB)
📁
CORE
📁
Compress
📄
Config.pm
(2.68 KB)
📄
Config.pod
(221.26 KB)
📄
Config_git.pl
(409 B)
📄
Config_heavy.pl
(38.48 KB)
📄
Cwd.pm
(20.67 KB)
📄
DB_File.pm
(62.05 KB)
📁
Data
📁
Devel
📁
Digest
📄
DynaLoader.pm
(24.45 KB)
📁
Encode
📄
Encode.pm
(29.03 KB)
📄
Errno.pm
(7.47 KB)
📄
Fcntl.pm
(5.32 KB)
📁
File
📁
Filter
📄
GDBM_File.pm
(1.78 KB)
📁
Hash
📁
I18N
📁
IO
📄
IO.pm
(1.37 KB)
📁
IPC
📁
JSON
📁
List
📁
MIME
📁
Math
📄
NDBM_File.pm
(2.46 KB)
📄
O.pm
(4.11 KB)
📄
Opcode.pm
(15.13 KB)
📄
POSIX.pm
(20.52 KB)
📄
POSIX.pod
(57.25 KB)
📁
PerlIO
📄
SDBM_File.pm
(2.46 KB)
📁
Scalar
📄
Socket.pm
(9.75 KB)
📄
Storable.pm
(40.03 KB)
📁
Sub
📁
Sys
📁
Text
📁
Time
📁
Unicode
📄
XSLoader.pm
(10.28 KB)
📄
_h2ph_pre.ph
(11.18 KB)
📁
asm
📁
asm-generic
📄
attrs.pm
(1.4 KB)
📁
auto
📁
bits
📄
encoding.pm
(19.43 KB)
📄
endian.ph
(4.06 KB)
📄
features.ph
(13.01 KB)
📁
gnu
📄
lib.pm
(6.69 KB)
📁
linux
📁
machine
📄
mro.pm
(10.84 KB)
📄
ops.pm
(997 B)
📄
perllocal.pod
(11.11 KB)
📄
re.pm
(14.47 KB)
📄
signal.ph
(4.02 KB)
📄
stdarg.ph
(2.88 KB)
📄
stddef.ph
(11.33 KB)
📁
sys
📄
syscall.ph
(86 B)
📄
syslimits.ph
(454 B)
📄
syslog.ph
(85 B)
📁
threads
📄
threads.pm
(33.58 KB)
📄
time.ph
(4.49 KB)
📁
vendor_perl
📁
version
📄
version.pm
(3.47 KB)
📄
version.pod
(9.6 KB)
📄
wait.ph
(83 B)
📄
xlocale.ph
(156 B)
Editing: attrs.pm
package attrs; use XSLoader (); $VERSION = "1.03"; =head1 NAME attrs - set/get attributes of a subroutine (deprecated) =head1 SYNOPSIS sub foo { use attrs qw(locked method); ... } @a = attrs::get(\&foo); =head1 DESCRIPTION NOTE: Use of this pragma is deprecated. Use the syntax sub foo : locked method { } to declare attributes instead. See also L<attributes>. This pragma lets you set and get attributes for subroutines. Setting attributes takes place at compile time; trying to set invalid attribute names causes a compile-time error. Calling C<attrs::get> on a subroutine reference or name returns its list of attribute names. Notice that C<attrs::get> is not exported. Valid attributes are as follows. =over 4 =item method Indicates that the invoking subroutine is a method. =item locked Setting this attribute is only meaningful when the subroutine or method is to be called by multiple threads. When set on a method subroutine (i.e. one marked with the B<method> attribute above), perl ensures that any invocation of it implicitly locks its first argument before execution. When set on a non-method subroutine, perl ensures that a lock is taken on the subroutine itself before execution. The semantics of the lock are exactly those of one explicitly taken with the C<lock> operator immediately after the subroutine is entered. =back =cut XSLoader::load 'attrs', $VERSION; 1;
Upload File
Create Folder