Results for: "slice"

Returns the methods available to this delegate object as the union of this object’s and _getobj_ public methods.

Returns the original line from source for from the given object.

See ::trace_object_allocations for more information and examples.

Start a dRuby server locally.

The new dRuby server will become the primary server, even if another server is currently the primary server.

uri is the URI for the server to bind to. If nil, the server will bind to random port on the default local host name and use the default dRuby protocol.

front is the server’s front object. This may be nil.

config is the configuration for the new server. This may be nil.

See DRbServer::new.

Start a dRuby server locally.

The new dRuby server will become the primary server, even if another server is currently the primary server.

uri is the URI for the server to bind to. If nil, the server will bind to random port on the default local host name and use the default dRuby protocol.

front is the server’s front object. This may be nil.

config is the configuration for the new server. This may be nil.

See DRbServer::new.

Stop the local dRuby server.

This operates on the primary server. If there is no primary server currently running, it is a noop.

Stop the local dRuby server.

This operates on the primary server. If there is no primary server currently running, it is a noop.

No documentation available
No documentation available
No documentation available

Return any possible conflicts against the currently loaded specs.

Create a new ImplicitNode node

Create a new ImplicitRestNode node

Create a new SourceLineNode node

No documentation available
No documentation available

Returns true if the named public method is defined by mod. If inherit is set, the lookup will also search mod’s ancestors. String arguments are converted to symbols.

module A
  def method1()  end
end
class B
  protected
  def method2()  end
end
class C < B
  include A
  def method3()  end
end

A.method_defined? :method1                 #=> true
C.public_method_defined? "method1"         #=> true
C.public_method_defined? "method1", true   #=> true
C.public_method_defined? "method1", false  #=> true
C.public_method_defined? "method2"         #=> false
C.method_defined? "method2"                #=> true

Makes a list of existing class methods public.

String arguments are converted to symbols. An Array of Symbols and/or Strings is also accepted.

Suffixes for dynamic library require-able paths.

No documentation available

Stop this server.

No documentation available
No documentation available

Creates threads that pick up UDP packets and passes them to do_write for decoding.

Creates a thread that notifies waiting clients from the TupleSpace.

No documentation available
Search took: 3ms  ·  Total Results: 1351