Results for: "pstore"

Returns the row as a CSV String. Headers are not included:

source = "Name,Value\nfoo,0\nbar,1\nbaz,2\n"
table = CSV.parse(source, headers: true)
row = table[0]
row.to_csv # => "foo,0\n"

Returns the table as a complete CSV String. Headers will be listed first, then all of the field rows.

This method assumes you want the Table.headers(), unless you explicitly pass :write_headers => false.

Convert an object reference id to an object.

This implementation looks up the reference id in the local object space and returns the object it refers to.

Convert an object into a reference id.

This implementation returns the object’s __id__ in the local object space.

Convert a dRuby reference to the local object it refers to.

Convert a local object to a dRuby reference.

Has a method been included in the list of insecure methods?

Coerce an object to a string, providing our own representation if to_s is not defined for the object.

No documentation available

Convert an object reference id to an object.

This implementation looks up the reference id in the local object space and returns the object it refers to.

Convert an object into a reference id.

This implementation returns the object’s __id__ in the local object space.

No documentation available

Returns [eigenvector_matrix, eigenvalue_matrix, eigenvector_matrix_inv]

Returns L, U, P in an array

Setter for the read_timeout attribute.

Sends a GET request to the target and returns the HTTP response as a Net::HTTPResponse object. The target can either be specified as (uri, headers), or as (host, path, port = 80); so:

res = Net::HTTP.get_response(URI('http://www.example.com/index.html'))
print res.body

or:

res = Net::HTTP.get_response('www.example.com', '/index.html')
print res.body

you can also specify request headers:

Net::HTTP.get_response(URI('http://www.example.com/index.html'), { 'Accept' => 'text/html' })

The default port to use for HTTP requests; defaults to 80.

Maximum number of times to retry an idempotent request in case of Net::ReadTimeout, IOError, EOFError, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE, OpenSSL::SSL::SSLError, Timeout::Error. Should be a non-negative integer number. Zero means no retries. The default value is 1.

Setter for the read_timeout attribute.

No documentation available

The address of the proxy server, if one is configured.

The port of the proxy server, if one is configured.

No documentation available
No documentation available

utils

Search took: 3ms  ·  Total Results: 2928