403Webshell
Server IP : 66.29.132.122  /  Your IP : 18.226.4.191
Web Server : LiteSpeed
System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : admazpex ( 531)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/self/root/proc/thread-self/root/proc/thread-self/root/opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/hocon-1.3.1/lib/hocon/impl/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/self/root/proc/thread-self/root/proc/thread-self/root/opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/hocon-1.3.1/lib/hocon/impl/config_number.rb
# encoding: utf-8

require 'hocon/impl'
require 'hocon/impl/abstract_config_value'

class Hocon::Impl::ConfigNumber
  include Hocon::Impl::AbstractConfigValue
  ## sigh... requiring these subclasses before this class
  ## is declared would cause an error.  Thanks, ruby.
  require 'hocon/impl/config_int'
  require 'hocon/impl/config_double'

  def self.new_number(origin, number, original_text)
    as_int = number.to_i
    if as_int == number
      Hocon::Impl::ConfigInt.new(origin, as_int, original_text)
    else
      Hocon::Impl::ConfigDouble.new(origin, number, original_text)
    end
  end

  def initialize(origin, original_text)
    super(origin)
    @original_text = original_text
  end
  attr_reader :original_text

  def transform_to_string
    @original_text
  end

  def int_value_range_checked(path)
    # We don't need to do any range checking here due to the way Ruby handles
    # integers (doesn't have the 32-bit/64-bit distinction that Java does).
    long_value
  end

  def long_value
    raise "long_value needs to be overriden by sub-classes of #{Hocon::Impl::ConfigNumber}, in this case #{self.class}"
  end

  def can_equal(other)
    other.is_a?(Hocon::Impl::ConfigNumber)
  end

  def ==(other)
    if other.is_a?(Hocon::Impl::ConfigNumber) && can_equal(other)
      @value == other.value
    else
      false
    end
  end

  def hash
    # This hash function makes it so that a ConfigNumber with a 3.0
    # and one with a 3 will return the hash code
    to_int = @value.round

    # If the value is an integer or a floating point equal to an integer
    if to_int == @value
      to_int.hash
    else
      @value.hash
    end
  end
end

Youez - 2016 - github.com/yon3zu
LinuXploit