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.157
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 /
Fiber /
Delete
Unzip
Name
Size
Permission
Date
Action
Pool
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Scheduler
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
%5b%5d%3d-c.ri
533
B
-rw-r--r--
2026-04-07 17:42
%5b%5d-c.ri
508
B
-rw-r--r--
2026-04-07 17:42
alive%3f-i.ri
458
B
-rw-r--r--
2026-04-07 17:42
backtrace-i.ri
1.59
KB
-rw-r--r--
2026-04-07 17:42
backtrace_locations-i.ri
857
B
-rw-r--r--
2026-04-07 17:42
blocking%3f-c.ri
908
B
-rw-r--r--
2026-04-07 17:42
blocking%3f-i.ri
749
B
-rw-r--r--
2026-04-07 17:42
blocking-c.ri
513
B
-rw-r--r--
2026-04-07 17:42
cdesc-Fiber.ri
3.93
KB
-rw-r--r--
2026-04-07 17:42
current-c.ri
410
B
-rw-r--r--
2026-04-07 17:42
current_scheduler-c.ri
474
B
-rw-r--r--
2026-04-07 17:42
inspect-i.ri
235
B
-rw-r--r--
2026-04-07 17:42
new-c.ri
1.96
KB
-rw-r--r--
2026-04-07 17:42
raise-i.ri
1.33
KB
-rw-r--r--
2026-04-07 17:42
resume-i.ri
887
B
-rw-r--r--
2026-04-07 17:42
schedule-c.ri
1.62
KB
-rw-r--r--
2026-04-07 17:42
scheduler-c.ri
626
B
-rw-r--r--
2026-04-07 17:42
set_scheduler-c.ri
972
B
-rw-r--r--
2026-04-07 17:42
storage%3d-i.ri
1.01
KB
-rw-r--r--
2026-04-07 17:42
storage-i.ri
400
B
-rw-r--r--
2026-04-07 17:42
to_s-i.ri
232
B
-rw-r--r--
2026-04-07 17:42
transfer-i.ri
3.7
KB
-rw-r--r--
2026-04-07 17:42
yield-c.ri
616
B
-rw-r--r--
2026-04-07 17:42
Save
Rename
U:RDoc::AnyMethod[iI"new:ETI"Fiber::new;TT:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"OCreates new Fiber. Initially, the fiber is not running and can be resumed ;TI"Mwith #resume. Arguments to the first #resume call will be passed to the ;TI"block:;To:RDoc::Markup::BlankLine o:RDoc::Markup::Verbatim; [I" f = Fiber.new do |initial| ;TI" current = initial ;TI" loop do ;TI"- puts "current: #{current.inspect}" ;TI" current = Fiber.yield ;TI" end ;TI" end ;TI".f.resume(100) # prints: current: 100 ;TI"4f.resume(1, 2, 3) # prints: current: [1, 2, 3] ;TI".f.resume # prints: current: nil ;TI"# ... and so on ... ;T:@format0o; ; [I"PIf <tt>blocking: false</tt> is passed to <tt>Fiber.new</tt>, _and_ current ;TI"Othread has a Fiber.scheduler defined, the Fiber becomes non-blocking (see ;TI"2"Non-blocking Fibers" section in class docs).;T@o; ; [I"QIf the <tt>storage</tt> is unspecified, the default is to inherit a copy of ;TI"Hthe storage from the current fiber. This is the same as specifying ;TI"<tt>storage: true</tt>.;T@o;; [I"Fiber[:x] = 1 ;TI"Fiber.new do ;TI" Fiber[:x] # => 1 ;TI" Fiber[:x] = 2 ;TI"end.resume ;TI"Fiber[:x] # => 1 ;T; 0o; ; [I"LIf the given <tt>storage</tt> is <tt>nil</tt>, this function will lazy ;TI"Dinitialize the internal storage, which starts as an empty hash.;T@o;; [ I"Fiber[:x] = "Hello World" ;TI" Fiber.new(storage: nil) do ;TI" Fiber[:x] # nil ;TI" end ;T; 0o; ; [I"OOtherwise, the given <tt>storage</tt> is used as the new fiber's storage, ;TI"(and it must be an instance of Hash.;T@o; ; [I"OExplicitly using <tt>storage: true</tt> is currently experimental and may ;TI"change in the future.;T: @fileI"cont.c;T:0@omit_headings_from_table_of_contents_below0I"HFiber.new(blocking: false, storage: true) { |*args| ... } -> fiber ;T0[ I"(*args);T@BFI" Fiber;TcRDoc::NormalClass00