408件ヒット
[401-408件を表示]
(0.097秒)
ライブラリ
- ビルトイン (288)
- etc (24)
- openssl (24)
- rubygems (24)
-
webrick
/ accesslog (12) -
webrick
/ utils (24) -
win32
/ registry (12)
モジュール
- Etc (24)
- FileTest (24)
- Gem (24)
- Kernel (48)
-
OpenSSL
:: ASN1 (24) - Process (84)
-
Process
:: Sys (132) -
WEBrick
:: AccessLog (12) -
WEBrick
:: Utils (24) -
Win32
:: Registry :: API (12)
キーワード
- SetValue (12)
- caller (36)
- issetugid (12)
-
set
_ close _ on _ exec (12) -
set
_ home (12) -
set
_ non _ blocking (12) -
set
_ paths (12) -
set
_ trace _ func (12) - setegid (12)
- seteuid (12)
- setgid (12)
- setgid? (12)
- setgrent (12)
- setpgid (12)
- setpgrp (12)
- setpriority (12)
- setproctitle (12)
- setpwent (12)
- setregid (12)
- setresgid (12)
- setresuid (12)
- setreuid (12)
- setrgid (12)
- setrlimit (24)
- setruid (12)
- setsid (12)
- setuid (12)
- setuid? (12)
-
setup
_ params (12)
検索結果
-
Kernel
. # caller(start , length) -> [String] | nil (7.0) -
start 段上の呼び出し元の情報を $@ の形式のバックトレース(文字列の配列)として返します。
...個数を指定します。
@param range 取得したいスタックの範囲を示す Range オブジェクトを指定します。
@see Kernel.#set_trace_func,Kernel.#raise,
Kernel.#caller_locations
//emlist[例][ruby]{
def foo
p caller(0)
p caller(1)
p caller(2)
p caller(3)
p ca...