Results for: "pstore"

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), 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

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

No documentation available
No documentation available
No documentation available

Gets the entity body returned by the remote HTTP server.

If a block is given, the body is passed to the block, and the body is provided in fragments, as it is read in from the socket.

If dest argument is given, response is read into that variable, with dest#<< method (it could be String or IO, or any other object responding to <<).

Calling this method a second or subsequent time for the same HTTPResponse object will return the value already read.

http.request_get('/index.html') {|res|
  puts res.read_body
}

http.request_get('/index.html') {|res|
  p res.read_body.object_id   # 538149362
  p res.read_body.object_id   # 538149362
}

# using iterator
http.request_get('/index.html') {|res|
  res.read_body do |segment|
    print segment
  end
}
No documentation available

The default port for IMAP connections, port 143

Similar to sort(), but returns an array of unique identifiers.

Similar to thread(), but returns unique identifiers instead of message sequence numbers.

Formats time as an IMAP-style date.

Formats time as an IMAP-style date-time.

No documentation available
No documentation available
No documentation available
No documentation available

returns the port for POP3

Search took: 4ms  ·  Total Results: 3621