Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby32 /
share /
ri /
system /
Ractor /
Delete
Unzip
Name
Size
Permission
Date
Action
ClosedError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Error
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
IsolationError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
MovedError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
MovedObject
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
RemoteError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
UnsafeError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
%3c%3c-i.ri
246
B
-rw-r--r--
2026-04-07 17:42
%5b%5d%3d-i.ri
298
B
-rw-r--r--
2026-04-07 17:42
%5b%5d-i.ri
293
B
-rw-r--r--
2026-04-07 17:42
cdesc-Ractor.ri
10.64
KB
-rw-r--r--
2026-04-07 17:42
close_incoming-i.ri
764
B
-rw-r--r--
2026-04-07 17:42
close_outgoing-i.ri
756
B
-rw-r--r--
2026-04-07 17:42
count-c.ri
719
B
-rw-r--r--
2026-04-07 17:42
current-c.ri
416
B
-rw-r--r--
2026-04-07 17:42
inspect-i.ri
253
B
-rw-r--r--
2026-04-07 17:42
main-c.ri
277
B
-rw-r--r--
2026-04-07 17:42
make_shareable-c.ri
1.66
KB
-rw-r--r--
2026-04-07 17:42
name-i.ri
294
B
-rw-r--r--
2026-04-07 17:42
new-c.ri
1.45
KB
-rw-r--r--
2026-04-07 17:42
receive-c.ri
1.88
KB
-rw-r--r--
2026-04-07 17:42
receive-i.ri
313
B
-rw-r--r--
2026-04-07 17:42
receive_if-c.ri
2.19
KB
-rw-r--r--
2026-04-07 17:42
receive_if-i.ri
233
B
-rw-r--r--
2026-04-07 17:42
recv-c.ri
238
B
-rw-r--r--
2026-04-07 17:42
recv-i.ri
237
B
-rw-r--r--
2026-04-07 17:42
select-c.ri
2.08
KB
-rw-r--r--
2026-04-07 17:42
send-i.ri
2.98
KB
-rw-r--r--
2026-04-07 17:42
shareable%3f-c.ri
794
B
-rw-r--r--
2026-04-07 17:42
take-i.ri
2.34
KB
-rw-r--r--
2026-04-07 17:42
to_s-i.ri
237
B
-rw-r--r--
2026-04-07 17:42
yield-c.ri
1.32
KB
-rw-r--r--
2026-04-07 17:42
Save
Rename
U:RDoc::AnyMethod[iI"make_shareable:ETI"Ractor::make_shareable;TT:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"*Make +obj+ shareable between ractors.;To:RDoc::Markup::BlankLine o; ; [I"L+obj+ and all the objects it refers to will be frozen, unless they are ;TI"already shareable.;T@o; ; [I"TIf +copy+ keyword is +true+, the method will copy objects before freezing them ;TI"4This is safer option but it can take be slower.;T@o; ; [I"KNote that the specification and implementation of this method are not ;TI"-mature and may be changed in the future.;T@o:RDoc::Markup::Verbatim; [I"obj = ['test'] ;TI"*Ractor.shareable?(obj) #=> false ;TI"-Ractor.make_shareable(obj) #=> ["test"] ;TI")Ractor.shareable?(obj) #=> true ;TI")obj.frozen? #=> true ;TI")obj[0].frozen? #=> true ;TI" ;TI""# Copy vs non-copy versions: ;TI"obj1 = ['test'] ;TI")obj1s = Ractor.make_shareable(obj1) ;TI"2obj1.frozen? #=> true ;TI"2obj1s.object_id == obj1.object_id #=> true ;TI"obj2 = ['test'] ;TI"5obj2s = Ractor.make_shareable(obj2, copy: true) ;TI"3obj2.frozen? #=> false ;TI"2obj2s.frozen? #=> true ;TI"3obj2s.object_id == obj2.object_id #=> false ;TI"7obj2s[0].object_id == obj2[0].object_id #=> false ;T:@format0o; ; [I"WSee also the "Shareable and unshareable objects" section in the Ractor class docs.;T: @fileI"ractor.rb;T:0@omit_headings_from_table_of_contents_below0I">Ractor.make_shareable(obj, copy: false) -> shareable_obj ;T0[ I"(obj, copy: false);T@2FI"Ractor;TcRDoc::NormalClass00