SILENT KILLERPanel

Current Path: > > opt > alt > > > ruby34 > share > ruby


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/alt///ruby34/share/ruby

NameTypeSizeLast ModifiedActions
bigdecimal Directory - -
cgi Directory - -
did_you_mean Directory - -
digest Directory - -
erb Directory - -
error_highlight Directory - -
fiddle Directory - -
forwardable Directory - -
io Directory - -
json Directory - -
logger Directory - -
net Directory - -
objspace Directory - -
open3 Directory - -
openssl Directory - -
optparse Directory - -
prism Directory - -
psych Directory - -
random Directory - -
reline Directory - -
ripper Directory - -
ruby_vm Directory - -
set Directory - -
strscan Directory - -
syntax_suggest Directory - -
unicode_normalize Directory - -
uri Directory - -
vendor_ruby Directory - -
yaml Directory - -
English.rb File 5672 bytes May 29 2025 13:39:42.
benchmark.rb File 19112 bytes May 29 2025 13:39:42.
bundled_gems.rb File 7455 bytes May 29 2025 13:39:41.
cgi.rb File 10070 bytes May 29 2025 13:39:42.
coverage.rb File 368 bytes May 29 2025 13:39:42.
date.rb File 1193 bytes May 29 2025 13:39:41.
delegate.rb File 11956 bytes May 29 2025 13:39:39.
did_you_mean.rb File 4614 bytes May 29 2025 13:39:39.
digest.rb File 3381 bytes May 29 2025 13:39:42.
erb.rb File 14883 bytes May 29 2025 13:39:41.
error_highlight.rb File 84 bytes May 29 2025 13:39:42.
expect.rb File 2244 bytes May 29 2025 13:39:39.
fiddle.rb File 3760 bytes May 29 2025 13:39:42.
fileutils.rb File 80691 bytes May 29 2025 13:39:39.
find.rb File 2577 bytes May 29 2025 13:39:42.
forwardable.rb File 9245 bytes May 29 2025 13:39:39.
ipaddr.rb File 22937 bytes May 29 2025 13:39:39.
json.rb File 20055 bytes May 29 2025 13:39:41.
logger.rb File 23028 bytes May 29 2025 13:39:42.
mkmf.rb File 94852 bytes May 29 2025 13:39:42.
monitor.rb File 7136 bytes May 29 2025 13:39:39.
objspace.rb File 4236 bytes May 29 2025 13:39:41.
open-uri.rb File 29063 bytes May 29 2025 13:39:42.
open3.rb File 48651 bytes May 29 2025 13:39:41.
openssl.rb File 1084 bytes May 29 2025 13:39:41.
optionparser.rb File 59 bytes May 29 2025 13:39:42.
optparse.rb File 65715 bytes May 29 2025 13:39:39.
ostruct.rb File 14557 bytes May 29 2025 13:39:39.
pathname.rb File 17612 bytes May 29 2025 13:39:41.
pp.rb File 18797 bytes May 29 2025 13:39:41.
prettyprint.rb File 16310 bytes May 29 2025 13:39:41.
prism.rb File 3005 bytes May 29 2025 13:39:42.
pstore.rb File 20853 bytes May 29 2025 13:39:42.
psych.rb File 25705 bytes May 29 2025 13:39:39.
readline.rb File 215 bytes May 29 2025 13:39:42.
reline.rb File 15285 bytes May 29 2025 13:39:41.
resolv.rb File 88963 bytes May 29 2025 13:39:41.
ripper.rb File 2494 bytes May 29 2025 13:39:42.
securerandom.rb File 2332 bytes May 29 2025 13:39:39.
set.rb File 25602 bytes May 29 2025 13:39:42.
shellwords.rb File 7709 bytes May 29 2025 13:39:42.
singleton.rb File 5649 bytes May 29 2025 13:39:41.
socket.rb File 60921 bytes May 29 2025 13:39:41.
syntax_suggest.rb File 74 bytes May 29 2025 13:39:42.
tempfile.rb File 21172 bytes May 29 2025 13:39:42.
time.rb File 24535 bytes May 29 2025 13:39:41.
timeout.rb File 5856 bytes May 29 2025 13:39:42.
tmpdir.rb File 5751 bytes May 29 2025 13:39:42.
tsort.rb File 14629 bytes May 29 2025 13:39:42.
un.rb File 11436 bytes May 29 2025 13:39:42.
uri.rb File 3167 bytes May 29 2025 13:39:41.
weakref.rb File 1388 bytes May 29 2025 13:39:41.
yaml.rb File 2184 bytes May 29 2025 13:39:41.

Reading File: //opt/alt///ruby34/share/ruby/objspace.rb

# frozen_string_literal: true

require 'objspace.so'

module ObjectSpace
  class << self
    private :_dump
    private :_dump_all
    private :_dump_shapes
  end

  module_function

  # Dump the contents of a ruby object as JSON.
  #
  # _output_ can be one of: +:stdout+, +:file+, +:string+, or IO object.
  #
  # * +:file+ means dumping to a tempfile and returning corresponding File object;
  # * +:stdout+ means printing the dump and returning +nil+;
  # * +:string+ means returning a string with the dump;
  # * if an instance of IO object is provided, the output goes there, and the object
  #   is returned.
  #
  # This method is only expected to work with C Ruby.
  # This is an experimental method and is subject to change.
  # In particular, the function signature and output format are
  # not guaranteed to be compatible in future versions of ruby.
  def dump(obj, output: :string)
    out = case output
    when :file, nil
      require 'tempfile'
      Tempfile.create(%w(rubyobj .json))
    when :stdout
      STDOUT
    when :string
      +''
    when IO
      output
    else
      raise ArgumentError, "wrong output option: #{output.inspect}"
    end

    ret = _dump(obj, out)
    return nil if output == :stdout
    ret
  end


  # Dump the contents of the ruby heap as JSON.
  #
  # _output_ argument is the same as for #dump.
  #
  # _full_ must be a boolean. If true, all heap slots are dumped including the empty ones (+T_NONE+).
  #
  # _since_ must be a non-negative integer or +nil+.
  #
  # If _since_ is a positive integer, only objects of that generation and
  # newer generations are dumped. The current generation can be accessed using
  # GC::count. Objects that were allocated without object allocation tracing enabled
  # are ignored. See ::trace_object_allocations for more information and
  # examples.
  #
  # If _since_ is omitted or is +nil+, all objects are dumped.
  #
  # _shapes_ must be a boolean or a non-negative integer.
  #
  # If _shapes_ is a positive integer, only shapes newer than the provided
  # shape id are dumped. The current shape_id can be accessed using <tt>RubyVM.stat(:next_shape_id)</tt>.
  #
  # If _shapes_ is +false+, no shapes are dumped.
  #
  # To only dump objects allocated past a certain point you can combine _since_ and _shapes_:
  #   ObjectSpace.trace_object_allocations
  #   GC.start
  #   gc_generation = GC.count
  #   shape_generation = RubyVM.stat(:next_shape_id)
  #   call_method_to_instrument
  #   ObjectSpace.dump_all(since: gc_generation, shapes: shape_generation)
  #
  # This method is only expected to work with C Ruby.
  # This is an experimental method and is subject to change.
  # In particular, the function signature and output format are
  # not guaranteed to be compatible in future versions of ruby.
  def dump_all(output: :file, full: false, since: nil, shapes: true)
    out = case output
    when :file, nil
      require 'tempfile'
      Tempfile.create(%w(rubyheap .json))
    when :stdout
      STDOUT
    when :string
      +''
    when IO
      output
    else
      raise ArgumentError, "wrong output option: #{output.inspect}"
    end

    shapes = 0 if shapes == true
    ret = _dump_all(out, full, since, shapes)
    return nil if output == :stdout
    ret
  end

  #  Dump the contents of the ruby shape tree as JSON.
  #
  #  _output_ argument is the same as for #dump.
  #
  #  If _since_ is a positive integer, only shapes newer than the provided
  #  shape id are dumped. The current shape_id can be accessed using <tt>RubyVM.stat(:next_shape_id)</tt>.
  #
  #  This method is only expected to work with C Ruby.
  #  This is an experimental method and is subject to change.
  #  In particular, the function signature and output format are
  #  not guaranteed to be compatible in future versions of ruby.
  def dump_shapes(output: :file, since: 0)
    out = case output
    when :file, nil
      require 'tempfile'
      Tempfile.create(%w(rubyshapes .json))
    when :stdout
      STDOUT
    when :string
      +''
    when IO
      output
    else
      raise ArgumentError, "wrong output option: #{output.inspect}"
    end

    ret = _dump_shapes(out, since)
    return nil if output == :stdout
    ret
  end
end

SILENT KILLER Tool