450件ヒット
[1-100件を表示]
(0.033秒)
別のキーワード
種類
- インスタンスメソッド (330)
- 特異メソッド (84)
- モジュール関数 (36)
ライブラリ
- ビルトイン (132)
- drb (24)
- e2mmap (6)
- erb (24)
-
fiddle
/ import (12) -
irb
/ frame (48) -
irb
/ xmp (24) - resolv-replace (12)
-
rubygems
/ installer (36) -
rubygems
/ specification (24) - socket (96)
- tracer (12)
クラス
- Binding (48)
-
DRb
:: DRbServer (12) - ERB (24)
-
Gem
:: Installer (36) -
Gem
:: Specification (24) - IPSocket (12)
-
IRB
:: Frame (48) - Method (24)
- Module (12)
- Proc (12)
- Socket (24)
- TCPSocket (24)
- Tracer (12)
- UDPSocket (48)
- UnboundMethod (12)
- XMP (12)
モジュール
- DRb (12)
- Exception2MessageMapper (6)
-
Fiddle
:: Importer (12) - Kernel (36)
キーワード
- === (6)
- [] (6)
-
add
_ bindir (12) -
add
_ filter (12) - binding (12)
- bindir= (12)
- bottom (24)
- call (12)
- connect (12)
- eval (36)
-
generate
_ bin _ script (12) -
generate
_ bin _ symlink (12) -
generate
_ windows _ script (12) -
instance
_ method (12) -
local
_ variable _ defined? (12) -
local
_ variable _ get (12) -
local
_ variable _ set (12) - new (36)
- open (12)
- recvfrom (24)
-
recvfrom
_ nonblock (12) - result (12)
- run (12)
-
start
_ service (12) - top (24)
- xmp (12)
検索結果
先頭5件
-
UDPSocket
# bind(host , port) -> 0 (18147.0) -
ソケットを host の port に bind(2) します。
...ソケットを host の port に bind(2) します。
bind したポートから Socket#recv でデータを受け取ることができます。
@param host bind するホスト名文字列
@param port bind するポート番号... -
UDPSocket
# bind(host , port) -> Integer (18141.0) -
UDPSocket#bindのパラメータ host の名前解決に resolv ライブラリを使います。
...UDPSocket#bindのパラメータ host の名前解決に resolv
ライブラリを使います。
@param host bindするホスト名を文字列で指定します。
@param port bindするポートを指定します。
@raise SocketError 名前解決に失敗した場合に発生します。... -
UnboundMethod
# bind(obj) -> Method (18137.0) -
self を obj にバインドした Method オブジェクトを生成して返します。
...成して返します。
@param obj 自身をバインドしたいオブジェクトを指定します。ただしバインドできるのは、
生成元のクラスかそのサブクラスのインスタンスのみです。
@raise TypeError objがbindできないオブジェクト......スをレシーバとする Method オブジェクトを生成
p m.bind(Foo.new) # => #<Method: Foo#foo>
# Foo のサブクラス Bar のインスタンスをレシーバとする Method
class Bar < Foo
end
p m.bind(Bar.new) # => #<Method: Bar(Foo)#foo>
# モジュー......を生成
p m = Foo.instance_method(:foo) # => #<UnboundMethod: Foo#foo>
# Foo をインクルードしたクラス Bar のインスタンスをレシーバと
# する Method オブジェクトを生成
class Bar
include Foo
end
p m.bind(Bar.new) # => #<Method: Bar(Foo)#foo>
//}......_method(:foo) # => #<UnboundMethod: Foo#foo>
# Foo をインクルードしたクラス Bar のインスタンスをレシーバと
# する Method オブジェクトを生成
class Bar
include Foo
end
p m.bind(Bar.new) # => #<Method: Bar(Foo)#foo>
//}
@see UnboundMethod#bind_call... -
Socket
# bind(my _ sockaddr) -> 0 (18123.0) -
ソケットを my_sockaddr に結合します。bind(2) と同じ働きをします。
...ソケットを my_sockaddr に結合します。bind(2)
と同じ働きをします。
@param my_sockaddr ソケットアドレス構造体を pack した文字列lib:socket#pack_stringもしくはAddrinfoオブジェクトを指定します。
@return 0 を返します。... -
Fiddle
:: Importer # bind(signature , *opts) { . . . } -> Fiddle :: Function (18119.0) -
Ruby のブロックを C の関数で wrap し、その関数をモジュールに インポートします。
...す。
@param signature 関数の名前とシネグチャ
@param opts オプション
例
require 'fiddle/import'
module M
extend Fiddle::Importer
dlload "libc.so.6"
typealias "size_t", "unsigned long"
extern "int qsort(void*, size_t, size_t, void*)"
bind("int compa... -
Exception2MessageMapper
# bind(cl) -> () (18107.0) -
@todo
...@todo
@param cl xxx... -
Proc
# binding -> Binding (6212.0) -
Proc オブジェクトが保持するコンテキストを Binding オブジェクトで返します。
...Proc オブジェクトが保持するコンテキストを
Binding オブジェクトで返します。
//emlist[例][ruby]{
def fred(param)
proc {}
end
sample_proc = fred(99)
eval("param", sample_proc.binding) # => 99
//}... -
Gem
:: Specification # add _ bindir(executables) -> Array | nil (6106.0) -
実行コマンドの格納場所を返します。
...実行コマンドの格納場所を返します。
@param executables 実行コマンド名を格納した配列を指定します。... -
Gem
:: Specification # bindir=(dir) (6106.0) -
実行ファイルを格納するディレクトリをセットします。
...実行ファイルを格納するディレクトリをセットします。
@param dir 実行ファイルを格納するディレクトリを指定します。デフォルトは "bin" です。...