Results for: "partition"

Return the best specification in the record that contains the file matching path.

No documentation available
No documentation available

Ask for a password. Does not echo response to terminal.

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

Private method to assemble query from attributes, scope, filter, and extensions.

Returns URL-escaped string following RFC 3986.

Returns URL-unescaped string following RFC 3986.

No documentation available
No documentation available

Writes a number of random generated bytes (currently 1024) to filename which can be used to initialize the PRNG by calling ::load_random_file in a later session.

Calls the block with each capitalized field name:

res = Net::HTTP.get_response(hostname, '/todos/1')
res.each_capitalized_name do |key|
  p key if key.start_with?('C')
end

Output:

"Content-Type"
"Connection"
"Cache-Control"
"Cf-Cache-Status"
"Cf-Ray"

The capitalization is system-dependent; see Case Mapping.

Returns an enumerator if no block is given.

Sets the value of field 'Content-Type'; returns the new value; see Content-Type request header:

req = Net::HTTP::Get.new(uri)
req.set_content_type('application/json') # => ["application/json"]

Net::HTTPHeader#content_type= is an alias for Net::HTTPHeader#set_content_type.

Yields to a block and preserves the previous set of objects being printed.

A pretty print for a pair of Hash

Creates a self-signed certificate with an issuer and subject from email, a subject alternative name of email and the given extensions for the key.

No documentation available

Asks for a password with a prompt

No documentation available
No documentation available

Run UDP/IP server loop on the given sockets.

The return value of Socket.udp_server_sockets is appropriate for the argument.

It calls the block for each message received.

Add a list of paths to the $LOAD_PATH at the proper place.

Search took: 2ms  ·  Total Results: 2857