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 /
ruby20 /
share /
ri /
2.0.0 /
system /
Psych /
Delete
Unzip
Name
Size
Permission
Date
Action
BadAlias
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Coder
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Error
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Exception
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Handler
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Handlers
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
JSON
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Nodes
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Omap
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Parser
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
PrivateType
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
ScalarScanner
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Set
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Stream
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Streaming
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
SyntaxError
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
TreeBuilder
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
Visitors
[ DIR ]
drwxr-xr-x
2026-05-01 04:24
add_private_type-c.ri
281
B
-rw-r--r--
2023-07-26 17:38
add_ruby_type-c.ri
275
B
-rw-r--r--
2023-07-26 17:38
cdesc-Psych.ri
6.92
KB
-rw-r--r--
2023-07-26 17:38
detect_implicit-c.ri
268
B
-rw-r--r--
2023-07-26 17:38
dump-c.ri
1.23
KB
-rw-r--r--
2023-07-26 17:38
dump_stream-c.ri
523
B
-rw-r--r--
2023-07-26 17:38
libyaml_version-c.ri
354
B
-rw-r--r--
2023-07-26 17:38
load-c.ri
1.02
KB
-rw-r--r--
2023-07-26 17:38
load_documents-c.ri
368
B
-rw-r--r--
2023-07-26 17:38
load_file-c.ri
394
B
-rw-r--r--
2023-07-26 17:38
load_stream-c.ri
832
B
-rw-r--r--
2023-07-26 17:38
object_maker-c.ri
268
B
-rw-r--r--
2023-07-26 17:38
parse-c.ri
1002
B
-rw-r--r--
2023-07-26 17:38
parse_file-c.ri
444
B
-rw-r--r--
2023-07-26 17:38
parse_stream-c.ri
1.33
KB
-rw-r--r--
2023-07-26 17:38
parser-c.ri
296
B
-rw-r--r--
2023-07-26 17:38
read_type_class-c.ri
278
B
-rw-r--r--
2023-07-26 17:38
tagurize-c.ri
254
B
-rw-r--r--
2023-07-26 17:38
to_json-c.ri
313
B
-rw-r--r--
2023-07-26 17:38
Save
Rename
U:RDoc::NormalModule[iI" Psych:EF@0o:RDoc::Markup::Document:@parts['o;;[-S:RDoc::Markup::Heading: leveli: textI" Overview;To:RDoc::Markup::BlankLine o:RDoc::Markup::Paragraph;[I")Psych is a YAML parser and emitter. ;TI"IPsych leverages libyaml [Home page: http://pyyaml.org/wiki/LibYAML] ;TI"Lor [Git repo: https://github.com/zerotao/libyaml] for its YAML parsing ;TI"Land emitting capabilities. In addition to wrapping libyaml, Psych also ;TI"Kknows how to serialize and de-serialize most Ruby objects to and from ;TI"the YAML format.;T@S; ; i;I",I NEED TO PARSE OR EMIT YAML RIGHT NOW!;T@o:RDoc::Markup::Verbatim;[I"# Parse some YAML ;TI"&Psych.load("--- foo") # => "foo" ;TI" ;TI"# Emit some YAML ;TI"1Psych.dump("foo") # => "--- foo\n...\n" ;TI"/{ :a => 'b'}.to_yaml # => "---\n:a: b\n" ;T:@format0o; ;[I"3Got more time on your hands? Keep on reading!;T@S; ; i;I"YAML Parsing;T@o; ;[ I"SPsych provides a range of interfaces for parsing a YAML document ranging from ;TI"Nlow level to high level, depending on your parsing needs. At the lowest ;TI"Plevel, is an event based parser. Mid level is access to the raw YAML AST, ;TI"Oand at the highest level is the ability to unmarshal YAML to ruby objects.;T@S; ; i;I"Low level parsing;T@o; ;[ I"RThe lowest level parser should be used when the YAML input is already known, ;TI"Land the developer does not want to pay the price of building an AST or ;TI"Pautomatic detection and conversion to ruby objects. See Psych::Parser for ;TI"6more information on using the event based parser.;T@S; ; i;I"Mid level parsing;T@o; ;[ I"RPsych provides access to an AST produced from parsing a YAML document. This ;TI"Ptree is built using the Psych::Parser and Psych::TreeBuilder. The AST can ;TI"Jbe examined and manipulated freely. Please see Psych::parse_stream, ;TI"OPsych::Nodes, and Psych::Nodes::Node for more information on dealing with ;TI"YAML syntax trees.;T@S; ; i;I"High level parsing;T@o; ;[I"QThe high level YAML parser provided by Psych simply takes YAML as input and ;TI"Treturns a Ruby data structure. For information on using the high level parser ;TI"see Psych.load;T@S; ; i;I"YAML Emitting;T@o; ;[ I"MPsych provides a range of interfaces ranging from low to high level for ;TI"Sproducing YAML documents. Very similar to the YAML parsing interfaces, Psych ;TI"Pprovides at the lowest level, an event based system, mid-level is building ;TI"Oa YAML AST, and the highest level is converting a Ruby object straight to ;TI"a YAML document.;T@S; ; i;I"Low level emitting;T@o; ;[ I"NThe lowest level emitter is an event based system. Events are sent to a ;TI"SPsych::Emitter object. That object knows how to convert the events to a YAML ;TI"Odocument. This interface should be used when document format is known in ;TI"Madvance or speed is a concern. See Psych::Emitter for more information.;T@S; ; i;I"Mid level emitting;T@o; ;[ I"SAt the mid level is building an AST. This AST is exactly the same as the AST ;TI"Pused when parsing a YAML document. Users can build an AST by hand and the ;TI"IAST knows how to emit itself as a YAML document. See Psych::Nodes, ;TI"QPsych::Nodes::Node, and Psych::TreeBuilder for more information on building ;TI"a YAML AST.;T@S; ; i;I"High level emitting;T@o; ;[I"RThe high level emitter has the easiest interface. Psych simply takes a Ruby ;TI"Qdata structure and converts it to a YAML document. See Psych.dump for more ;TI"2information on dumping a Ruby data structure.;T: @fileI"ext/psych/lib/psych.rb;T:0@omit_headings_from_table_of_contents_below0o;;[ ;I"!ext/psych/lib/psych/coder.rb;T;0o;;[ ;I"&ext/psych/lib/psych/deprecated.rb;T;0o;;[ ;I"#ext/psych/lib/psych/handler.rb;T;0o;;[ ;I"4ext/psych/lib/psych/handlers/document_stream.rb;T;0o;;[ ;I"-ext/psych/lib/psych/handlers/recorder.rb;T;0o;;[ ;I",ext/psych/lib/psych/json/ruby_events.rb;T;0o;;[ ;I"'ext/psych/lib/psych/json/stream.rb;T;0o;;[ ;I"-ext/psych/lib/psych/json/tree_builder.rb;T;0o;;[ ;I",ext/psych/lib/psych/json/yaml_events.rb;T;0o;;[ ;I"!ext/psych/lib/psych/nodes.rb;T;0o;;[ ;I"'ext/psych/lib/psych/nodes/alias.rb;T;0o;;[ ;I"*ext/psych/lib/psych/nodes/document.rb;T;0o;;[ ;I")ext/psych/lib/psych/nodes/mapping.rb;T;0o;;[ ;I"&ext/psych/lib/psych/nodes/node.rb;T;0o;;[ ;I"(ext/psych/lib/psych/nodes/scalar.rb;T;0o;;[ ;I"*ext/psych/lib/psych/nodes/sequence.rb;T;0o;;[ ;I"(ext/psych/lib/psych/nodes/stream.rb;T;0o;;[ ;I" ext/psych/lib/psych/omap.rb;T;0o;;[ ;I""ext/psych/lib/psych/parser.rb;T;0o;;[ ;I"*ext/psych/lib/psych/scalar_scanner.rb;T;0o;;[ ;I"ext/psych/lib/psych/set.rb;T;0o;;[ ;I""ext/psych/lib/psych/stream.rb;T;0o;;[ ;I"%ext/psych/lib/psych/streaming.rb;T;0o;;[ ;I"(ext/psych/lib/psych/syntax_error.rb;T;0o;;[ ;I"(ext/psych/lib/psych/tree_builder.rb;T;0o;;[ ;I"0ext/psych/lib/psych/visitors/depth_first.rb;T;0o;;[ ;I",ext/psych/lib/psych/visitors/emitter.rb;T;0o;;[ ;I".ext/psych/lib/psych/visitors/json_tree.rb;T;0o;;[ ;I",ext/psych/lib/psych/visitors/to_ruby.rb;T;0o;;[ ;I",ext/psych/lib/psych/visitors/visitor.rb;T;0o;;[ ;I".ext/psych/lib/psych/visitors/yaml_tree.rb;T;0o;;[ ;I"ext/psych/psych.c;T;0o;;[o; ;[ I"@This exists just to satify bugs in marshal'd gemspecs that ;TI"Bcontain a reference to YAML::PrivateType. We prune these out ;TI"Hin Specification._load, but if we don't have the constant, Marshal ;TI"blows up.;T;I"$lib/rubygems/psych_additions.rb;T;0;0;0[ [U:RDoc::Constant[i I"VERSION;FI"Psych::VERSION;F00o;;[o; ;[I"&The version is Psych you're using;T;@e;0@e@cRDoc::NormalModule0U;[i I"LIBYAML_VERSION;FI"Psych::LIBYAML_VERSION;F00o;;[o; ;[I"*The version of libyaml Psych is using;T;@e;0@e@@�0U;[i I"DEPRECATED;FI"Psych::DEPRECATED;F00o;;[ ;@k;0@k@@�0[ [[I" class;T[[:public[[I"add_private_type;FI"&ext/psych/lib/psych/deprecated.rb;T[I"add_ruby_type;F@�[I"detect_implicit;F@�[I" dump;FI"ext/psych/lib/psych.rb;T[I"dump_stream;F@�[I"libyaml_version;TI"ext/psych/psych.c;T[I" load;F@�[I"load_documents;F@�[I"load_file;F@�[I"load_stream;F@�[I"object_maker;F@�[I" parse;F@�[I"parse_file;F@�[I"parse_stream;F@�[I"parser;F@�[I"read_type_class;F@�[I" tagurize;F@�[I"to_json;F@�[:protected[ [:private[ [I" instance;T[[;[ [;[ [;[ [[I"DeprecatedMethods;To;;[ ;@k;0@�[U:RDoc::Context::Section[i 0o;;[ ;0;0[+@e@h@k@n@q@t@w@z@}@{@~@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�I"lib/rdoc/rdoc.rb;T@�I"lib/rubygems/psych_tree.rb;TI""lib/rubygems/specification.rb;TI"lib/yaml.rb;T@.cRDoc::TopLevel