686件ヒット
[1-100件を表示]
(0.081秒)
別のキーワード
ライブラリ
クラス
-
Encoding
:: Converter (12) -
Gem
:: StreamUI (12) - GetoptLong (36)
- Hash (36)
- LoadError (12)
-
Net
:: IMAP :: ResponseError (12) -
OpenSSL
:: PKCS7 (12) -
OpenSSL
:: X509 :: Store (24) -
OpenSSL
:: X509 :: StoreContext (12) - OptionParser (144)
- PStore (60)
- Pathname (22)
-
Psych
:: SyntaxError (12) - SystemCallError (12)
-
Zlib
:: GzipFile :: Error (12) -
Zlib
:: GzipReader (180) -
Zlib
:: GzipWriter (36)
モジュール
- Kernel (40)
キーワード
- abort (12)
-
alert
_ error (12) - comment= (12)
- commit (12)
- delete (12)
- each (24)
-
each
_ byte (24) -
each
_ line (24) - errno (12)
- error= (12)
- error? (12)
-
error
_ string (24) - fetch (48)
- file (12)
- find (22)
- getc (12)
- gets (12)
- input (12)
-
last
_ error (12) - lineno (12)
- lineno= (12)
- mtime= (12)
- on (144)
-
orig
_ name= (12) - path (12)
- read (12)
- readchar (12)
- readline (12)
- readlines (12)
- response (12)
- timeout (16)
- transaction (12)
- ungetc (12)
-
with
_ werror (24)
検索結果
先頭5件
-
OpenSSL
:: X509 :: Store # error -> Integer | nil (18209.0) -
最後に OpenSSL::X509::Store#verify を呼び、 検証したときのエラーコードを返します。
...ドを返します。
エラーコードの整数値は OpenSSL::X509 に定数が定義されています。
詳しくは c:OpenSSL::X509#verify_error を見てください。
検証に成功した場合は OpenSSL::X509::V_OK を返します。
verify を一度も呼びだしていない場合... -
GetoptLong
# error -> Class | nil (18205.0) -
現在のエラーの型を返します。エラーが発生していなければ、nil を返します。
現在のエラーの型を返します。エラーが発生していなければ、nil
を返します。 -
OpenSSL
:: X509 :: StoreContext # error=(error) (6245.0) -
エラーコードを設定します。
...509::StoreContext#error_string
もその値に応じた文字列が返るようになります。
例:
require 'openssl'
store = OpenSSL::X509::Store.new
store.set_default_paths
cert = OpenSSL::X509::Certificate.new(...)
store.verify(cert, chain){|ok,ctx|
ctx.error = OpenSSL::X509:......:V_ERR_APPLICATION_VERIFICATION;
false} # => false
p store.error # => OpenSSL::X509::V_ERR_APPLICATION_VERIFICATION
p store.error_string # => "application verification failure"
@param error エラーコードの整数値
@see OpenSSL::X509::StoreContext#error... -
Gem
:: StreamUI # alert _ error(statement , question = nil) -> String | nil (6219.0) -
ERROR レベルのアラートを表示します。
...
ERROR レベルのアラートを表示します。
@param statement 表示する文字列を指定します。
@param question 必要であれば質問を指定します。
@return question を指定した場合は、それに対する回答を返します。
question を指定しない... -
Encoding
:: Converter # last _ error -> Exception | nil (6215.0) -
直前に変換器で発生した例外に相当する例外オブジェクトを返します。 直前の変換で例外が発生していない場合は nil を返します。
...859-1")
p ec.primitive_convert(src="\xf1abcd", dst="") #=> :invalid_byte_sequence
p ec.last_error #=> #<Encoding::InvalidByteSequenceError: "\xF1" followed by "a" on UTF-8>
p ec.primitive_convert(src, dst, nil, 1) #=> :destination_buffer_full
p ec.last_error #=> nil
//}... -
OpenSSL
:: PKCS7 # error _ string -> String | nil (6209.0) -
検証エラーの理由を表す文字列を返します。
...検証エラーの理由を表す文字列を返します。
OpenSSL::PKCS7#verify で検証を
した場合のみ更新されます。
OpenSSL::PKCS7#verify で検証をする前は nil を返します。
検証に成功した場合は nil を返します。
@see OpenSSL::PKCS7#error_string=... -
GetoptLong
# error? -> Class | nil (6205.0) -
現在のエラーの型を返します。エラーが発生していなければ、nil を返します。
現在のエラーの型を返します。エラーが発生していなければ、nil
を返します。 -
GetoptLong
# error _ message -> String | nil (6203.0) -
現在のエラーのエラーメッセージを返します。エラーが発生していな ければ、nil を返します。
現在のエラーのエラーメッセージを返します。エラーが発生していな
ければ、nil を返します。 -
Kernel
# with _ werror(opt , opts = nil) {|opt , opts| . . . } -> object (6203.0) -
@todo 内部用?
@todo 内部用?
???
@param opt ????
@param opts ????
@return ブロックを評価した結果を返します。