Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ruby /
reline /
Delete
Unzip
Name
Size
Permission
Date
Action
io
[ DIR ]
drwxr-xr-x
2025-08-15 19:34
key_actor
[ DIR ]
drwxr-xr-x
2025-08-15 19:34
unicode
[ DIR ]
drwxr-xr-x
2025-08-15 19:34
config.rb
10.11
KB
-rw-r--r--
2025-04-24 08:18
face.rb
4.79
KB
-rw-r--r--
2025-04-24 08:18
history.rb
1.87
KB
-rw-r--r--
2025-04-24 08:18
io.rb
694
B
-rw-r--r--
2025-04-24 08:18
key_actor.rb
206
B
-rw-r--r--
2025-04-24 08:18
key_stroke.rb
2.84
KB
-rw-r--r--
2025-04-24 08:18
kill_ring.rb
2.37
KB
-rw-r--r--
2025-04-24 08:18
line_editor.rb
81.42
KB
-rw-r--r--
2025-04-24 08:18
terminfo.rb
4.56
KB
-rw-r--r--
2025-04-24 08:18
unicode.rb
21.13
KB
-rw-r--r--
2025-04-24 08:18
version.rb
39
B
-rw-r--r--
2025-04-24 08:18
Save
Rename
class Reline::History < Array def initialize(config) @config = config end def to_s 'HISTORY' end def delete_at(index) index = check_index(index) super(index) end def [](index) index = check_index(index) unless index.is_a?(Range) super(index) end def []=(index, val) index = check_index(index) super(index, String.new(val, encoding: Reline.encoding_system_needs)) end def concat(*val) val.each do |v| push(*v) end end def push(*val) # If history_size is zero, all histories are dropped. return self if @config.history_size.zero? # If history_size is negative, history size is unlimited. if @config.history_size.positive? diff = size + val.size - @config.history_size if diff > 0 if diff <= size shift(diff) else diff -= size clear val.shift(diff) end end end super(*(val.map{ |v| String.new(v, encoding: Reline.encoding_system_needs) })) end def <<(val) # If history_size is zero, all histories are dropped. return self if @config.history_size.zero? # If history_size is negative, history size is unlimited. if @config.history_size.positive? shift if size + 1 > @config.history_size end super(String.new(val, encoding: Reline.encoding_system_needs)) end private def check_index(index) index += size if index < 0 if index < -2147483648 or 2147483647 < index raise RangeError.new("integer #{index} too big to convert to 'int'") end # If history_size is negative, history size is unlimited. if @config.history_size.positive? if index < -@config.history_size or @config.history_size < index raise RangeError.new("index=<#{index}>") end end raise IndexError.new("index=<#{index}>") if index < 0 or size <= index index end end