1148件ヒット
[1-100件を表示]
(0.023秒)
ライブラリ
- ビルトイン (139)
-
cgi
/ session (48) -
cgi
/ session / pstore (12) - coverage (8)
- csv (240)
- fileutils (36)
- json (48)
-
net
/ imap (12) - open-uri (40)
- optparse (84)
- psych (36)
-
rdoc
/ generator / json _ index (12) -
rdoc
/ parser (12) -
rdoc
/ parser / c (12) -
rdoc
/ parser / ruby (12) -
rdoc
/ parser / simple (12) -
rubygems
/ command (24) -
rubygems
/ dependency _ installer (12) -
rubygems
/ installer (12) -
rubygems
/ security (72) -
rubygems
/ server (12) -
rubygems
/ uninstaller (12) - socket (48)
- sync (18)
- tempfile (55)
-
webrick
/ cgi (12) -
webrick
/ httpservlet / abstract (24) -
webrick
/ httpservlet / filehandler (12) -
win32
/ registry (72)
クラス
-
CGI
:: Session (12) -
CGI
:: Session :: FileStore (12) -
CGI
:: Session :: MemoryStore (12) -
CGI
:: Session :: NullStore (12) -
CGI
:: Session :: PStore (12) - CSV (240)
- Coverage (8)
-
Encoding
:: Converter (24) -
Gem
:: Command (24) -
Gem
:: DependencyInstaller (12) -
Gem
:: Installer (12) -
Gem
:: Security :: Policy (24) -
Gem
:: Server (12) -
Gem
:: Uninstaller (12) -
JSON
:: Parser (12) -
JSON
:: State (24) -
Net
:: IMAP (12) - OptionParser (72)
-
OptionParser
:: ParseError (12) -
Psych
:: Visitors :: YAMLTree (12) -
RDoc
:: Generator :: JsonIndex (12) -
RDoc
:: Parser (12) -
RDoc
:: Parser :: C (12) -
RDoc
:: Parser :: Ruby (12) -
RDoc
:: Parser :: Simple (12) - Regexp (24)
-
RubyVM
:: InstructionSequence (60) -
Socket
:: Option (48) - String (31)
-
Sync
_ m :: Err (6) -
Sync
_ m :: LockModeFailer (6) -
Sync
_ m :: UnknownLocker (6) - Tempfile (55)
-
WEBrick
:: CGI (12) -
WEBrick
:: HTTPServlet :: AbstractServlet (24) -
WEBrick
:: HTTPServlet :: FileHandler (12) -
Win32
:: Registry (72)
キーワード
- Fail (18)
- [] (12)
- accept (12)
-
add
_ common _ option (12) -
add
_ trusted _ cert (12) - bool (12)
-
build
_ cert (12) -
build
_ self _ signed _ cert (12) - compile (24)
-
compile
_ file (12) -
compile
_ option (12) -
compile
_ option= (12) - create (46)
- dump (24)
- filter (36)
-
filter
_ backtrace (12) - foreach (24)
-
from
_ state (12) - generate (12)
-
generate
_ line (12) -
get
_ instance (12) - getopts (24)
-
have
_ option? (12) - instance (24)
- int (12)
- linger (12)
- new (390)
- open (110)
-
open
_ uri (24) - parse (24)
-
parse
_ line (12) -
parser
_ for (12) - read (12)
- readlines (12)
- reject (12)
- run (12)
-
search
_ convpath (12) -
sign
_ cert (12) - start (8)
- table (12)
-
trusted
_ cert _ path (12)
検索結果
先頭5件
-
FileUtils
. options -> Array (18101.0) -
オプション名の配列を返します。
...オプション名の配列を返します。
//emlist[][ruby]{
require 'fileutils'
FileUtils.options
# => ["verbose", "mode", "noop", "parents", "force", "preserve", "dereference_root", "remove_destination", "secure", "mtime", "nocreate"]
//}......オプション名の配列を返します。
//emlist[][ruby]{
require 'fileutils'
FileUtils.options
# => ["noop", "verbose", "force", "mode", "parents", "owner", "group", "preserve", "dereference_root", "remove_destination", "secure", "mtime", "nocreate"]
//}... -
FileUtils
. options _ of(mid) -> Array (18101.0) -
与えられたメソッド名で使用可能なオプション名の配列を返します。
...与えられたメソッド名で使用可能なオプション名の配列を返します。
@param mid メソッド名を指定します。
//emlist[][ruby]{
require 'fileutils'
FileUtils.options_of(:rm) # => ["noop", "verbose", "force"]
//}... -
RubyVM
:: InstructionSequence . compile _ option=(options) (6208.0) -
命令シーケンスのコンパイル時のデフォルトの最適化オプションを引数 options で指定します。
...命令シーケンスのコンパイル時のデフォルトの最適化オプションを引数
options で指定します。
@param options コンパイル時の最適化オプションを true、false、nil、
Hash のいずれかで指定します。true を指定した場合は......:debug_level をキーに指定した場合は値を数値で指定します。
.new、.compile、.compile_file メソッドの実行の際に option 引数を指定し
た場合はその実行のみ最適化オプションを変更する事もできます。
@see RubyVM::InstructionSequence.n... -
Gem
:: Command . add _ common _ option(*args) {|value , options| . . . } (6202.0) -
全てのコマンドに共通するオプションを登録するためのメソッドです。
全てのコマンドに共通するオプションを登録するためのメソッドです。
@param args 追加するオプションの情報を指定します。 -
RubyVM
:: InstructionSequence . compile _ option -> Hash (6114.0) -
命令シーケンスのコンパイル時のデフォルトの最適化オプションを Hash で返 します。
...デフォルトの最適化オプションを Hash で返
します。
//emlist[例][ruby]{
require "pp"
pp RubyVM::InstructionSequence.compile_option
# => {:inline_const_cache=>true,
# :peephole_optimization=>true,
# :tailcall_optimization=>false,
# :specialized_instruction=>true,
# :operands_uni......fication=>true,
# :instructions_unification=>false,
# :stack_caching=>false,
# :trace_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
//}
@see RubyVM::InstructionSequence.compile_option=... -
FileUtils
. have _ option?(mid , opt) -> bool (6102.0) -
mid というメソッドが opt というオプションを持つ場合、真を返します。 そうでない場合は、偽を返します。
mid というメソッドが opt というオプションを持つ場合、真を返します。
そうでない場合は、偽を返します。
@param mid メソッド名を指定します。
@param opt オプション名を指定します。 -
Gem
:: Command . common _ options -> Array (6101.0) -
共通の引数を返します。
共通の引数を返します。 -
Socket
:: Option . new(family , level , optname , data) -> Socket :: Option (3148.0) -
Socket::Option オブジェクト新たに生成し返します。
...Socket::Option オブジェクト新たに生成し返します。
family, level, optname には Socket::SOL_SOCKET のような整数の他、
文字列("SOL_SOCKET", "SOCKET")、シンボル(:SOL_SOCKET, :SOCKET)を
指定することができます。
@param family ソケットファミリー......@param optname オプションの名前
@param data データ(文字列)
@see Socket::Option.int, Socket::Option.bool, Socket::Option.linger
require 'socket'
sockopt = Socket::Option.new(:INET, :SOCKET, :KEEPALIVE, [1].pack("i"))
p sockopt #=> #<Socket::Option: INET SOCKET KEEPALIVE 1>... -
Socket
:: Option . bool(family , level , optname , boolean) -> Socket :: Option (3142.0) -
整数をデータとして持つ Socket::Option オブジェクト新たに生成し返します。
...整数をデータとして持つ Socket::Option オブジェクト新たに生成し返します。
family, level, optname には Socket::SOL_SOCKET のような整数の他、
文字列("SOL_SOCKET", "SOCKET")、シンボル(:SOL_SOCKET, :SOCKET)を
指定することができます。
@param f......ションの名前
@param boolean データ(真偽値)
require 'socket'
p Socket::Option.bool(:INET, :SOCKET, :KEEPALIVE, true)
# => #<Socket::Option: INET SOCKET KEEPALIVE 1>
p Socket::Option.bool(:INET, :SOCKET, :KEEPALIVE, false)
# => #<Socket::Option: AF_INET SOCKET KEEPALIVE 0>...