330件ヒット
[1-100件を表示]
(0.116秒)
別のキーワード
ライブラリ
- ビルトイン (108)
- e2mmap (6)
- erb (24)
-
fiddle
/ import (12) -
irb
/ frame (24) -
irb
/ xmp (12) - resolv-replace (12)
-
rubygems
/ installer (36) -
rubygems
/ specification (24) - socket (72)
クラス
- Binding (48)
- ERB (24)
-
Gem
:: Installer (36) -
Gem
:: Specification (24) - IPSocket (12)
-
IRB
:: Frame (24) - Method (24)
- Module (12)
- Proc (12)
- Socket (24)
- UDPSocket (48)
- UnboundMethod (12)
モジュール
- Exception2MessageMapper (6)
-
Fiddle
:: Importer (12) - Kernel (12)
キーワード
- === (6)
- [] (6)
-
add
_ bindir (12) - binding (12)
- bindir= (12)
- bottom (12)
- call (12)
- connect (12)
- eval (12)
-
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) - recvfrom (24)
-
recvfrom
_ nonblock (12) - result (12)
- run (12)
- top (12)
- xmp (12)
検索結果
先頭5件
-
UDPSocket
# bind(host , port) -> 0 (18148.0) -
ソケットを host の port に bind(2) します。
...ソケットを host の port に bind(2) します。
bind したポートから Socket#recv でデータを受け取ることができます。
@param host bind するホスト名文字列
@param port bind するポート番号... -
UDPSocket
# bind(host , port) -> Integer (18142.0) -
UDPSocket#bindのパラメータ host の名前解決に resolv ライブラリを使います。
...UDPSocket#bindのパラメータ host の名前解決に resolv
ライブラリを使います。
@param host bindするホスト名を文字列で指定します。
@param port bindするポートを指定します。
@raise SocketError 名前解決に失敗した場合に発生します。... -
UnboundMethod
# bind(obj) -> Method (18138.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 (18124.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 (18120.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) -> () (18108.0) -
@todo
...@todo
@param cl xxx... -
Proc
# binding -> Binding (6213.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 (6107.0) -
実行コマンドの格納場所を返します。
...実行コマンドの格納場所を返します。
@param executables 実行コマンド名を格納した配列を指定します。... -
Gem
:: Specification # bindir=(dir) (6107.0) -
実行ファイルを格納するディレクトリをセットします。
...実行ファイルを格納するディレクトリをセットします。
@param dir 実行ファイルを格納するディレクトリを指定します。デフォルトは "bin" です。...