ライブラリ
- ビルトイン (54)
-
cgi
/ html (24) - mkmf (48)
-
net
/ imap (12) - openssl (12)
- pty (12)
- rake (12)
-
rexml
/ document (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ package (12) -
rubygems
/ package / tar _ header (24) -
rubygems
/ package / tar _ writer (12) -
shell
/ command-processor (12) - socket (24)
- uri (48)
-
win32
/ registry (108) - win32ole (12)
クラス
- BasicSocket (12)
- Exception (12)
-
Gem
:: Package :: TarHeader (24) -
Gem
:: Package :: TarWriter (12) - Module (12)
-
Net
:: IMAP (12) - Object (24)
-
OpenSSL
:: BN (12) - Proc (6)
-
REXML
:: Text (12) -
Shell
:: CommandProcessor (12) - Socket (12)
-
URI
:: FTP (24) -
URI
:: Generic (12) -
URI
:: LDAP (12) - WIN32OLE (12)
モジュール
-
CGI
:: HtmlExtension (24) - FileUtils (12)
- Kernel (48)
- PTY (12)
-
Win32
:: Registry :: API (108)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - === (12)
- BadCheckSum (12)
- CheckCommand (12)
-
Check
_ SafeStr (1) -
Check
_ Type (12) - CreateKey (12)
- DeleteKey (12)
- DeleteValue (12)
- EnumKey (12)
- EnumValue (12)
-
NEWS for Ruby 2
. 2 . 0 (11) -
NEWS for Ruby 3
. 0 . 0 (5) - OpenKey (12)
- SetValue (12)
-
backtrace
_ locations (12) -
check
_ closed (12) -
check
_ point (6) -
check
_ signedness (24) -
check
_ sizeof (24) - checkbox (12)
- checksum (12)
-
connect
_ nonblock (12) -
cvar
_ override _ check (12) -
finish
_ all _ jobs (6) - getpeereid (12)
-
initialize
_ copy (12) - new (48)
- new2 (12)
-
ole
_ query _ interface (12) - packdw (12)
-
prime
_ fasttest? (12) -
rb
_ check _ convert _ type (12) -
rb
_ check _ safe _ str (1) -
rb
_ cstr _ to _ dbl (12) -
rb
_ eval _ cmd (12) -
rb
_ read _ check (1) -
rb
_ str _ to _ dbl (12) -
rb
_ thread _ check (12) -
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 8 . 4 feature (12) -
ruby2
_ keywords (18) -
ruby
_ stack _ check (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / search _ command (12) - sh (12)
-
stack
_ check (12) - unpackdw (12)
-
update
_ checksum (12)
検索結果
先頭5件
- Net
:: IMAP # check -> Net :: IMAP :: TaggedResponse - PTY
. check(pid , raise = false) -> Process :: Status | nil - static rb
_ thread _ t rb _ thread _ check(VALUE data) - Kernel
# check _ signedness(type , headers = nil , opts = nil) -> "signed" | "unsigned" | nil - Kernel
# check _ signedness(type , headers = nil , opts = nil) { . . . } -> "signed" | "unsigned" | nil
-
Net
:: IMAP # check -> Net :: IMAP :: TaggedResponse (18217.0) -
CHECK コマンドを送り、現在処理しているメールボックスの チェックポイントを要求します。
...CHECK コマンドを送り、現在処理しているメールボックスの
チェックポイントを要求します。
チェックポイントの要求とは、サーバ内部で保留状態になっている
操作を完了させることを意味します。例えばメモリ上にある... -
PTY
. check(pid , raise = false) -> Process :: Status | nil (18207.0) -
pid で指定された子プロセスの状態をチェックし、変化があれば変化したステータスを 返します。実行中、あるいは変化なしであれば nil を返します。
...pid で指定された子プロセスの状態をチェックし、変化があれば変化したステータスを
返します。実行中、あるいは変化なしであれば nil を返します。
状態が変化した後、その状態を取得することは一回しかできない(く...... check を
呼んだら nil が返ってくる)ので注意してください。
状態が変化して、終了したか停止した場合、第二引数が偽であれば、
対応する Process::Status オブジェクトを返します。
@param pid チェックしたい子プロセスの PID......指定します。
@param raise 真を指定すると、子プロセスが終了または停止していた場合、
例外 PTY::ChildExited が発生します。デフォルトは偽です。
(なお、バグにより、1.9.2 pXXX より古い ruby では、終了また... -
static rb
_ thread _ t rb _ thread _ check(VALUE data) (12300.0) -
-
Kernel
# check _ signedness(type , headers = nil , opts = nil) -> "signed" | "unsigned" | nil (12234.0) -
Returns the signedness of the given +type+. You may optionally specify additional +headers+ to search in for the +type+. If the +type+ is found and is a numeric type, a macro is passed as a preprocessor constant to the compiler using the +type+ name, in uppercase, prepended with 'SIGNEDNESS_OF_', followed by the +type+ name, followed by '=X' where 'X' is positive integer if the +type+ is unsigned, or negative integer if the +type+ is signed. For example, if size_t is defined as unsigned, then check_signedness('size_t') would returned +1 and the SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is done.
...nedness of the given +type+. You may optionally
specify additional +headers+ to search in for the +type+.
If the +type+ is found and is a numeric type, a macro is passed as a
preprocessor constant to the compiler using the +type+ name, in
uppercase, prepended with 'SIGNEDNESS_OF_', followed b......e, followed by '=X' where 'X' is positive integer if the +type+ is
unsigned, or negative integer if the +type+ is signed.
For example, if size_t is defined as unsigned, then
check_signedness('size_t') would returned +1 and the
SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the......compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is
done.... -
Kernel
# check _ signedness(type , headers = nil , opts = nil) { . . . } -> "signed" | "unsigned" | nil (12234.0) -
Returns the signedness of the given +type+. You may optionally specify additional +headers+ to search in for the +type+. If the +type+ is found and is a numeric type, a macro is passed as a preprocessor constant to the compiler using the +type+ name, in uppercase, prepended with 'SIGNEDNESS_OF_', followed by the +type+ name, followed by '=X' where 'X' is positive integer if the +type+ is unsigned, or negative integer if the +type+ is signed. For example, if size_t is defined as unsigned, then check_signedness('size_t') would returned +1 and the SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is done.
...nedness of the given +type+. You may optionally
specify additional +headers+ to search in for the +type+.
If the +type+ is found and is a numeric type, a macro is passed as a
preprocessor constant to the compiler using the +type+ name, in
uppercase, prepended with 'SIGNEDNESS_OF_', followed b......e, followed by '=X' where 'X' is positive integer if the +type+ is
unsigned, or negative integer if the +type+ is signed.
For example, if size_t is defined as unsigned, then
check_signedness('size_t') would returned +1 and the
SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the......compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is
done.... -
Gem
:: Package :: TarWriter # check _ closed (12201.0) -
自身に関連付けられた IO が既に close されているかどうかチェックします。
自身に関連付けられた IO が既に close されているかどうかチェックします。
@raise IOError 自身に関連付けられた IO が既に close されている場合に発
生します。 -
Gem
:: Package :: TarHeader # update _ checksum (12200.0) -
チェックサムを更新します。
チェックサムを更新します。 -
static void cvar
_ override _ check(VALUE id , VALUE a) (12200.0) -
-
void rb
_ read _ check(FILE *fp) (12200.0) -
この関数は deprecated です。
...この関数は deprecated です。... -
rubygems
/ commands / check _ command (12006.0) -
インストールされている Gem パッケージを検証するためのライブラリです。
...インストールされている Gem パッケージを検証するためのライブラリです。
Usage: gem check [options]
Options:
--verify FILE 内部のチェックサムにより Gem パッケージを検証します
-a, --alien......指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
インストールされている Gem パ...