/
usr
/
lib64
/
perl5
/
/usr/lib64/perl5
mkdir
upload
Name
Size
Mode
Actions
5.10.0/
-
0755
rm
asm/
-
0755
rm
asm-generic/
-
0755
rm
auto/
-
0755
rm
B/
-
0755
rm
bits/
-
0755
rm
Bundle/
-
0755
rm
Compress/
-
0755
rm
CORE/
-
0755
rm
Data/
-
0755
rm
DBD/
-
0755
rm
DBI/
-
0755
rm
Devel/
-
0755
rm
Digest/
-
0755
rm
Encode/
-
0755
rm
File/
-
0755
rm
Filter/
-
0755
rm
gnu/
-
0755
rm
Hash/
-
0755
rm
HTML/
-
0755
rm
I18N/
-
0755
rm
IO/
-
0755
rm
IPC/
-
0755
rm
JSON/
-
0755
rm
linux/
-
0755
rm
List/
-
0755
rm
machine/
-
0755
rm
Math/
-
0755
rm
MIME/
-
0755
rm
PerlIO/
-
0755
rm
Scalar/
-
0755
rm
Storable/
-
0755
rm
Sub/
-
0755
rm
Sys/
-
0755
rm
sys/
-
0755
rm
Text/
-
0755
rm
threads/
-
0755
rm
Time/
-
0755
rm
Unicode/
-
0755
rm
vendor_perl/
-
0755
rm
version/
-
0755
rm
attrs.pm
1435
0644
edit
dl
rm
B.pm
25706
0644
edit
dl
rm
Config.pm
2747
0644
edit
dl
rm
Config.pod
226574
0644
edit
dl
rm
Config_git.pl
409
0644
edit
dl
rm
Config_heavy.pl
39469
0644
edit
dl
rm
Cwd.pm
21167
0644
edit
dl
rm
DB_File.pm
63535
0644
edit
dl
rm
DynaLoader.pm
25033
0644
edit
dl
rm
Encode.pm
29731
0644
edit
dl
rm
encoding.pm
19892
0644
edit
dl
rm
endian.ph
4153
0644
edit
dl
rm
Errno.pm
7659
0644
edit
dl
rm
Fcntl.pm
5445
0644
edit
dl
rm
features.ph
13326
0644
edit
dl
rm
GDBM_File.pm
1819
0644
edit
dl
rm
IO.pm
1401
0644
edit
dl
rm
lib.pm
6853
0644
edit
dl
rm
mro.pm
11101
0644
edit
dl
rm
NDBM_File.pm
2519
0644
edit
dl
rm
O.pm
4208
0644
edit
dl
rm
Opcode.pm
15490
0644
edit
dl
rm
ops.pm
997
0644
edit
dl
rm
perllocal.pod
25020
0644
edit
dl
rm
POSIX.pm
21011
0644
edit
dl
rm
POSIX.pod
58624
0644
edit
dl
rm
re.pm
14817
0644
edit
dl
rm
Roadmap.pod
15161
0644
edit
dl
rm
SDBM_File.pm
2515
0644
edit
dl
rm
signal.ph
4120
0644
edit
dl
rm
Socket.pm
9984
0644
edit
dl
rm
stdarg.ph
2950
0644
edit
dl
rm
stddef.ph
11607
0644
edit
dl
rm
Storable.pm
40995
0644
edit
dl
rm
syscall.ph
86
0644
edit
dl
rm
syslimits.ph
454
0644
edit
dl
rm
syslog.ph
85
0644
edit
dl
rm
TASKS.pod
1666
0644
edit
dl
rm
threads.pm
34385
0644
edit
dl
rm
time.ph
4602
0644
edit
dl
rm
version.pm
3192
0444
edit
dl
rm
version.pod
9854
0444
edit
dl
rm
wait.ph
83
0644
edit
dl
rm
xlocale.ph
156
0644
edit
dl
rm
XSLoader.pm
10523
0644
edit
dl
rm
_h2ph_pre.ph
11448
0644
edit
dl
rm
Edit:
/usr/lib64/perl5/attrs.pm
(1435B)
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;
Save
cmd:
run