613件ヒット
[101-200件を表示]
(0.132秒)
ライブラリ
- ビルトイン (163)
-
cgi
/ html (24) - e2mmap (6)
-
irb
/ context (24) - json (24)
- mkmf (24)
-
net
/ smtp (12) -
rdoc
/ context (24) -
rdoc
/ top _ level (12) - rss (60)
-
rubygems
/ config _ file (24) -
rubygems
/ gem _ path _ searcher (36) -
rubygems
/ source _ index (60) -
rubygems
/ source _ info _ cache (24) -
webrick
/ httpresponse (12) - win32ole (12)
クラス
- Binding (7)
-
Encoding
:: Converter (72) -
Encoding
:: UndefinedConversionError (24) -
Gem
:: ConfigFile (24) -
Gem
:: GemPathSearcher (36) -
Gem
:: SourceIndex (60) -
Gem
:: SourceInfoCache (24) -
IRB
:: Context (24) -
JSON
:: Parser (12) -
JSON
:: State (12) - Method (12)
- Module (12)
-
Net
:: SMTP (12) - Proc (12)
-
RDoc
:: Context (24) -
RDoc
:: Options (48) -
RDoc
:: TopLevel (12) -
RSS
:: Maker :: RSS20 :: Items :: Item :: Source (24) -
RSS
:: Rss :: Channel :: Item :: Source (24) -
RSS
:: TaxonomyTopicsModel :: TaxonomyTopics (12) - Rational (12)
- UnboundMethod (12)
-
WEBrick
:: HTTPResponse (12) -
WIN32OLE
_ TYPE (12)
モジュール
-
CGI
:: HtmlExtension (24) - Exception2MessageMapper (6)
-
Gem
:: LocalRemoteOptions (24) - Kernel (24)
キーワード
-
add
_ class (12) -
add
_ class _ or _ module (24) -
add
_ source _ option (12) -
add
_ spec (12) -
add
_ update _ sources _ option (12) -
check
_ circular? (12) - coerce (12)
-
const
_ source _ location (12) - content (24)
- content= (24)
- convert (12)
-
def
_ exception (6) -
default
_ event _ sources (12) - find (12)
-
find
_ all (12) -
find
_ name (12) -
force
_ output (12) -
force
_ output= (12) -
force
_ update (12) - img (12)
-
init
_ gemspecs (12) -
inline
_ source (12) -
primitive
_ convert (48) - rc? (12)
- rcptto (12)
-
remove
_ spec (12) - resources (12)
- search (24)
-
search
_ with _ source (12) - source (12)
-
source
_ encoding (24) -
source
_ encoding _ name (12) -
source
_ location (43) - specification (12)
- status (12)
-
try
_ link (24) -
update
_ sources (12) -
update
_ sources= (12)
検索結果
先頭5件
- UnboundMethod
# source _ location -> [String , Integer] | nil - Encoding
:: UndefinedConversionError # source _ encoding -> Encoding - Encoding
:: UndefinedConversionError # source _ encoding _ name -> Encoding - RSS
:: TaxonomyTopicsModel :: TaxonomyTopics # resources - Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize , options) -> Symbol
-
UnboundMethod
# source _ location -> [String , Integer] | nil (12201.0) -
ソースコードのファイル名と行番号を配列で返します。
...nil を返します。
//emlist[例][ruby]{
require 'time'
Time.instance_method(:zone).source_location # => nil
Time.instance_method(:httpdate).source_location # => ["/Users/user/.rbenv/versions/2.4.3/lib/ruby/2.4.0/time.rb", 654]
//}
@see Proc#source_location, Method#source_location... -
Encoding
:: UndefinedConversionError # source _ encoding -> Encoding (12101.0) -
エラーを発生させた変換の変換元のエンコーディングを Encoding オブジェクトで返します。
...ーディングを Encoding
オブジェクトで返します。
変換が多段階になされる場合は元の文字列のものではない
エンコーディングが返される場合があることに注意してください。
@see Encoding::UndefinedConversionError#destination_encoding... -
Encoding
:: UndefinedConversionError # source _ encoding _ name -> Encoding (12101.0) -
エラーを発生させた変換の変換元のエンコーディングを文字列で返します。
...エラーを発生させた変換の変換元のエンコーディングを文字列で返します。
@see Encoding::UndefinedConversionError#source_encoding... -
RSS
:: TaxonomyTopicsModel :: TaxonomyTopics # resources (12101.0) -
@todo
@todo -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize , options) -> Symbol (9601.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...coding::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesiz......ram options 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol
options には以下が指定できます。
: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after o......: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :finished... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize) -> Symbol (9501.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...coding::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesiz......ram options 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol
options には以下が指定できます。
: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after o......: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :finished... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset) -> Symbol (9401.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...coding::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesiz......ram options 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol
options には以下が指定できます。
: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after o......: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :finished... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer) -> Symbol (9301.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...coding::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesiz......ram options 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol
options には以下が指定できます。
: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after o......: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :finished... -
Exception2MessageMapper
# def _ exception(exception _ name , message _ format , superclass = StandardError) -> Class (9301.0) -
exception_name という名前の例外クラスを定義します。
...exception_name という名前の例外クラスを定義します。
@param exception_name 定義する例外クラスの名前をシンボルで指定します。
@param message_format メッセージのフォーマット。
@param superclass 定義する例外のスーパークラスを指定... -
Gem
:: SourceIndex # search(gem _ pattern , platform _ only = false) -> [Gem :: Specification] (9301.0) -
引数で指定された条件を満たす Gem のリストを返します。
...満たす Gem のリストを返します。
@param gem_pattern 検索したい Gem を表す Gem::Dependency のインスタンスを指定します。
@param platform_only 真を指定するとプラットフォームが一致するもののみを返します。デフォルトは偽です。...