Results for: "Logger"

For the given source, compiles with CRuby and returns a list of all of the sets of local variables that were encountered.

For the given source, parses with prism and returns a list of all of the sets of local variables that were encountered.

Deserialize the tokens represented by the given string into a parse result.

Internal interface to Random; Generate random data n bytes.

Generates formatted random number from raw random bytes. See Random#rand.

No documentation available

Creates an unsigned certificate for subject and key. The lifetime of the key is from the current time to age which defaults to one year.

The extensions restrict the key to the indicated uses.

Creates a new digest instance using the specified algorithm. The default is SHA256.

Enumerates the trusted certificates via Gem::Security::TrustDir.

Simple deprecation method that deprecates name by wrapping it up in a dummy method. It warns on each call to the dummy method telling the user of repl (unless repl is :none) and the Rubygems version that it is planned to go away.

Simple deprecation method that deprecates name by wrapping it up in a dummy method. It warns on each call to the dummy method telling the user of repl (unless repl is :none) and the Rubygems version that it is planned to go away.

No documentation available
No documentation available
No documentation available

Guts of original execute

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

Displays a warning statement to the warning output location. Asks a question if given.

Enumerates the parents of directory.

Set the effective user ID, and if possible, the saved user ID of the process to the given user. Returns the new effective user ID. Not available on all platforms.

[Process.uid, Process.euid]          #=> [0, 0]
Process::UID.grant_privilege(31)     #=> 31
[Process.uid, Process.euid]          #=> [0, 31]

Exchange real and effective user IDs and return the new effective user ID. Not available on all platforms.

[Process.uid, Process.euid]   #=> [0, 31]
Process::UID.re_exchange      #=> 0
[Process.uid, Process.euid]   #=> [31, 0]

Returns true if the real and effective user IDs of a process may be exchanged on the current platform.

Search took: 5ms  ·  Total Results: 2737