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.188
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 /
ObjectSpace /
Delete
Unzip
Name
Size
Permission
Date
Action
InternalObjectWrapper
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
WeakMap
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
_dump-c.ri
258
B
-rw-r--r--
2024-06-26 17:25
_dump_all-c.ri
270
B
-rw-r--r--
2024-06-26 17:25
_id2ref-c.ri
234
B
-rw-r--r--
2024-06-26 17:25
allocation_class_path-c.ri
809
B
-rw-r--r--
2024-06-26 17:25
allocation_generation-c.ri
871
B
-rw-r--r--
2024-06-26 17:25
allocation_method_id-c.ri
862
B
-rw-r--r--
2024-06-26 17:25
allocation_sourcefile-c.ri
533
B
-rw-r--r--
2024-06-26 17:25
allocation_sourceline-c.ri
545
B
-rw-r--r--
2024-06-26 17:25
cdesc-ObjectSpace.ri
3.22
KB
-rw-r--r--
2024-06-26 17:25
count_imemo_objects-c.ri
1.13
KB
-rw-r--r--
2024-06-26 17:25
count_nodes-c.ri
1020
B
-rw-r--r--
2024-06-26 17:25
count_objects-c.ri
1.28
KB
-rw-r--r--
2024-06-26 17:25
count_objects_size-c.ri
1.09
KB
-rw-r--r--
2024-06-26 17:25
count_symbols-c.ri
1.33
KB
-rw-r--r--
2024-06-26 17:25
count_tdata_objects-c.ri
1.54
KB
-rw-r--r--
2024-06-26 17:25
define_finalizer-c.ri
2.49
KB
-rw-r--r--
2024-06-26 17:25
dump-i.ri
846
B
-rw-r--r--
2024-06-26 17:25
dump_all-i.ri
1.53
KB
-rw-r--r--
2024-06-26 17:25
each_object-c.ri
1.5
KB
-rw-r--r--
2024-06-26 17:25
garbage_collect-c.ri
309
B
-rw-r--r--
2024-06-26 17:25
garbage_collect-i.ri
308
B
-rw-r--r--
2024-06-26 17:25
internal_class_of-c.ri
679
B
-rw-r--r--
2024-06-26 17:25
internal_super_of-c.ri
703
B
-rw-r--r--
2024-06-26 17:25
memsize_of-c.ri
761
B
-rw-r--r--
2024-06-26 17:25
memsize_of_all-c.ri
1.21
KB
-rw-r--r--
2024-06-26 17:25
reachable_objects_from-c.ri
1.99
KB
-rw-r--r--
2024-06-26 17:25
reachable_objects_from_root-c.ri
535
B
-rw-r--r--
2024-06-26 17:25
trace_object_allocations-c.ri
1.13
KB
-rw-r--r--
2024-06-26 17:25
trace_object_allocations_clear-c.ri
413
B
-rw-r--r--
2024-06-26 17:25
trace_object_allocations_debug_start-c.ri
315
B
-rw-r--r--
2024-06-26 17:25
trace_object_allocations_start-c.ri
412
B
-rw-r--r--
2024-06-26 17:25
trace_object_allocations_stop-c.ri
598
B
-rw-r--r--
2024-06-26 17:25
undefine_finalizer-c.ri
374
B
-rw-r--r--
2024-06-26 17:25
Save
Rename
U:RDoc::AnyMethod[iI"reachable_objects_from:ETI"(ObjectSpace::reachable_objects_from;TT:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::List: @type: LABEL:@items[o:RDoc::Markup::ListItem:@label[I"MRI specific feature;T; [o:RDoc::Markup::Paragraph; [I"-Return all reachable objects from `obj'.;To:RDoc::Markup::BlankLine o;; [I":This method returns all reachable objects from `obj'.;T@o;; [I"OIf `obj' has two or more references to the same object `x', then returned ;TI"(array only includes one `x' object.;T@o;; [I"KIf `obj' is a non-markable (non-heap management) object such as true, ;TI"Mfalse, nil, symbols and Fixnums (and Flonum) then it simply returns nil.;T@o;; [ I"QIf `obj' has references to an internal object, then it returns instances of ;TI"PObjectSpace::InternalObjectWrapper class. This object contains a reference ;TI"Nto an internal object and you can check the type of internal object with ;TI"`type' method.;T@o;; [I"QIf `obj' is instance of ObjectSpace::InternalObjectWrapper class, then this ;TI"Kmethod returns all reachable object from an internal object, which is ;TI"pointed by `obj'.;T@o;; [I"1With this method, you can find memory leaks.;T@o;; [I"=This method is only expected to work except with C Ruby.;T@o;; [I" Example:;To:RDoc::Markup::Verbatim; [I"9ObjectSpace.reachable_objects_from(['a', 'b', 'c']) ;TI" #=> [Array, 'a', 'b', 'c'] ;TI" ;TI"9ObjectSpace.reachable_objects_from(['a', 'a', 'a']) ;TI"K#=> [Array, 'a', 'a', 'a'] # all 'a' strings have different object id ;TI" ;TI"9ObjectSpace.reachable_objects_from([v = 'a', v, v]) ;TI"#=> [Array, 'a'] ;TI" ;TI"+ObjectSpace.reachable_objects_from(1) ;TI"6#=> nil # 1 is not markable (heap managed) object;T:@format0: @fileI"ext/objspace/objspace.c;T:0@omit_headings_from_table_of_contents_below0I"=ObjectSpace.reachable_objects_from(obj) -> array or nil ;T0[ I" (p1);T@AFI"ObjectSpace;TcRDoc::NormalModule00