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.217.103
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 /
CSV /
Row /
Delete
Unzip
Name
Size
Permission
Date
Action
%3c%3c-i.ri
1.47
KB
-rw-r--r--
2024-06-26 17:25
%3d%3d-i.ri
362
B
-rw-r--r--
2024-06-26 17:25
%5b%5d%3d-i.ri
2.07
KB
-rw-r--r--
2024-06-26 17:25
%5b%5d-i.ri
282
B
-rw-r--r--
2024-06-26 17:25
cdesc-Row.ri
1.44
KB
-rw-r--r--
2024-06-26 17:25
delete-i.ri
1.79
KB
-rw-r--r--
2024-06-26 17:25
delete_if-i.ri
995
B
-rw-r--r--
2024-06-26 17:25
dig-i.ri
909
B
-rw-r--r--
2024-06-26 17:25
each-i.ri
568
B
-rw-r--r--
2024-06-26 17:25
each_pair-i.ri
267
B
-rw-r--r--
2024-06-26 17:25
fetch-i.ri
1.72
KB
-rw-r--r--
2024-06-26 17:25
field%3f-i.ri
352
B
-rw-r--r--
2024-06-26 17:25
field-i.ri
1.54
KB
-rw-r--r--
2024-06-26 17:25
field_row%3f-i.ri
368
B
-rw-r--r--
2024-06-26 17:25
fields-i.ri
2.28
KB
-rw-r--r--
2024-06-26 17:25
has_key%3f-i.ri
509
B
-rw-r--r--
2024-06-26 17:25
header%3f-i.ri
267
B
-rw-r--r--
2024-06-26 17:25
header_row%3f-i.ri
372
B
-rw-r--r--
2024-06-26 17:25
headers-i.ri
524
B
-rw-r--r--
2024-06-26 17:25
include%3f-i.ri
269
B
-rw-r--r--
2024-06-26 17:25
index-i.ri
513
B
-rw-r--r--
2024-06-26 17:25
initialize_copy-i.ri
250
B
-rw-r--r--
2024-06-26 17:25
inspect-i.ri
756
B
-rw-r--r--
2024-06-26 17:25
key%3f-i.ri
261
B
-rw-r--r--
2024-06-26 17:25
member%3f-i.ri
267
B
-rw-r--r--
2024-06-26 17:25
new-c.ri
994
B
-rw-r--r--
2024-06-26 17:25
push-i.ri
643
B
-rw-r--r--
2024-06-26 17:25
row-i.ri
298
B
-rw-r--r--
2024-06-26 17:25
to_csv-i.ri
586
B
-rw-r--r--
2024-06-26 17:25
to_h-i.ri
880
B
-rw-r--r--
2024-06-26 17:25
to_hash-i.ri
257
B
-rw-r--r--
2024-06-26 17:25
to_s-i.ri
262
B
-rw-r--r--
2024-06-26 17:25
values_at-i.ri
286
B
-rw-r--r--
2024-06-26 17:25
Save
Rename
U:RDoc::AnyMethod[iI"fields:ETI"CSV::Row#fields;TF:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"RReturns field values per the given +specifiers+, which may be any mixture of:;To:RDoc::Markup::List: @type:BULLET:@items[ o:RDoc::Markup::ListItem:@label0; [o; ; [I"\Integer index.;To;;0; [o; ; [I" \Range of \Integer indexes.;To;;0; [o; ; [I"52-element \Array containing a header and offset.;To;;0; [o; ; [I"Header.;To;;0; [o; ; [I"\Range of headers.;To:RDoc::Markup::BlankLine o; ; [I";For +specifier+ in one of the first four cases above, ;TI"Greturns the result of <tt>self.field(specifier)</tt>; see #field.;T@)o; ; [I"7Although there may be any number of +specifiers+, ;TI"5the examples here will illustrate one at a time.;T@)o; ; [I"0When the specifier is an \Integer +index+, ;TI"(returns <tt>self.field(index)</tt>L;To:RDoc::Markup::Verbatim; [ I".source = "Name,Name,Name\nFoo,Bar,Baz\n" ;TI".table = CSV.parse(source, headers: true) ;TI"row = table[0] ;TI" row.fields(1) # => ["Bar"] ;T:@format0o; ; [I":When the specifier is a \Range of \Integers +range+, ;TI"(returns <tt>self.field(range)</tt>:;To;; [I"*row.fields(1..2) # => ["Bar", "Baz"] ;T;0o; ; [I"7When the specifier is a 2-element \Array +array+, ;TI"(returns <tt>self.field(array)</tt>L;To;; [I"/row.fields('Name', 1) # => ["Foo", "Bar"] ;T;0o; ; [I".When the specifier is a header +header+, ;TI")returns <tt>self.field(header)</tt>L;To;; [I"%row.fields('Name') # => ["Foo"] ;T;0o; ; [ I"8When the specifier is a \Range of headers +range+, ;TI"8forms a new \Range +new_range+ from the indexes of ;TI"2<tt>range.start</tt> and <tt>range.end</tt>, ;TI"0and returns <tt>self.field(new_range)</tt>:;To;; [ I".source = "Name,NAME,name\nFoo,Bar,Baz\n" ;TI".table = CSV.parse(source, headers: true) ;TI"row = table[0] ;TI"4row.fields('Name'..'NAME') # => ["Foo", "Bar"] ;T;0o; ; [I"-Returns all fields if no argument given:;To;; [I"*row.fields # => ["Foo", "Bar", "Baz"];T;0: @fileI"lib/csv/row.rb;T:0@omit_headings_from_table_of_contents_below0I"self.fields(*specifiers) ;T0[[I"values_at;To;; [ ;@c;0I"(*headers_and_or_indices);T@cFI"Row;TcRDoc::NormalClass00