678件ヒット
[201-300件を表示]
(0.069秒)
別のキーワード
ライブラリ
- ビルトイン (478)
- benchmark (12)
- date (2)
-
fiddle
/ import (12) - json (12)
-
rexml
/ document (36) - securerandom (8)
- set (9)
- timeout (37)
- un (12)
- uri (12)
クラス
- Array (10)
- DateTime (2)
- FalseClass (60)
- Object (8)
-
REXML
:: Text (12) - Set (12)
- String (21)
- Symbol (21)
- Time (307)
モジュール
- Benchmark (12)
-
Fiddle
:: Importer (12) -
GC
:: Profiler (24) -
JSON
:: Generator :: GeneratorMethods :: FalseClass (12) - Kernel (52)
-
REXML
:: Security (24) - SecureRandom (8)
- Timeout (21)
- URI (12)
キーワード
- & (12)
- - (24)
- FALSE (8)
- Rubyで使われる記号の意味(正規表現の複雑な記号は除く) (12)
- ^ (12)
- alphanumeric (8)
- at (34)
- bmbm (12)
- casecmp (24)
- casecmp? (18)
-
decode
_ www _ form _ component (12) -
deconstruct
_ keys (4) -
entity
_ expansion _ text _ limit (12) -
entity
_ expansion _ text _ limit= (12) - fiddle (12)
- gm (24)
- inspect (12)
- intersect? (4)
- intersection (18)
- local (24)
- mktime (24)
- new (43)
- now (12)
- nsec (12)
- report (12)
- result (12)
-
ruby 1
. 6 feature (12) -
rubygems
/ security (12) - sleep (24)
- struct (12)
- subsec (12)
- timeout (37)
-
to
_ a (12) -
to
_ i (12) -
to
_ json (12) -
to
_ s (12) -
tv
_ nsec (12) -
tv
_ sec (12) -
tv
_ usec (12) - usec (12)
- utc (24)
-
wait
_ writable (12) - | (12)
検索結果
先頭5件
-
FalseClass
# ^(other) -> bool (3006.0) -
other が真なら true を, 偽なら false を返します。
...です。
^ は再定義可能な演算子に分類されていますので、通常は false ^ other の形で使われます。
//emlist[例][ruby]{
p false ^ true #=> true
p false ^ false #=> false
p false ^ nil #=> false
p false ^ (1 == 1) #=> true
p false ^ (1 + 1) #=> true
p fa... -
FalseClass
# inspect -> String (3006.0) -
常に文字列 "false" を返します。
...常に文字列 "false" を返します。
//emlist[例][ruby]{
false.to_s # => "false"
//}... -
FalseClass
# to _ s -> String (3006.0) -
常に文字列 "false" を返します。
...常に文字列 "false" を返します。
//emlist[例][ruby]{
false.to_s # => "false"
//}... -
FalseClass
# |(other) -> bool (3006.0) -
other が真なら true を, 偽なら false を返します。
...です。
| は再定義可能な演算子に分類されていますので、通常は false | other の形で使われます。
//emlist[例][ruby]{
p false | true #=> true
p false | false #=> false
p false | nil #=> false
p false | (1 == 1) #=> true
p false | (1 + 1) #=> true
p fa... -
JSON
:: Generator :: GeneratorMethods :: FalseClass # to _ json(state _ or _ hash = nil) -> String (3006.0) -
自身から生成した JSON 形式の文字列を返します。
...JSON 形式の文字列をカスタマイズするため
に JSON::State のインスタンスか、
JSON::State.new の引数と同じ Hash を
指定します。
//emlist[例][ruby]{
require "json"
false.to_json # => "false"
//}... -
REXML
:: Security . entity _ expansion _ text _ limit -> Integer (3006.0) -
実体参照の展開による文字列の増分(テキストのバイト数)の 最大値を指定します。
...せ、処理を中断します。
実体参照の展開処理を使った DoS 攻撃に対抗するための
仕組みです。
デフォルトは 10240 (byte) です。
@see REXML::Document.entity_expansion_text_limit=,
http://www.ruby-lang.org/ja/news/2013/02/22/rexml-dos-2013-02-22/... -
REXML
:: Security . entity _ expansion _ text _ limit=(val) (3006.0) -
実体参照の展開による文字列の増分(テキストのバイト数)の 最大値を指定します。
...させ、処理を中断します。
実体参照の展開処理を使った DoS 攻撃に対抗するための
仕組みです。
デフォルトは 10240 (byte) です。
@see REXML::Document.entity_expansion_text_limit
http://www.ruby-lang.org/ja/news/2013/02/22/rexml-dos-2013-02-22/... -
SecureRandom
. alphanumeric(n = nil) -> String (3006.0) -
ランダムな英数字を生成して返します。
...n A-Z, a-z, 0-9 からなる文字列が返されます。
@raise NotImplementedError 安全な乱数発生器が使えない場合に発生します。
//emlist[][ruby]{
require 'securerandom'
p SecureRandom.alphanumeric #=> "2BuBuLf3WfSKyQbR"
p SecureRandom.alphanumeric(10) #=> "i6K93NdqiH"
//}... -
Time
. gm(year , mon = 1 , day = 1 , hour = 0 , min = 0 , sec = 0 , usec = 0) -> Time (217.0) -
引数で指定した協定世界時の Time オブジェクトを返します。
...@param sec 秒を 0 から 60 までの整数か文字列で指定します。(60はうるう秒)
@param usec マイクロ秒を整数か文字列で指定します。
@raise ArgumentError 与えられた引数の範囲が valid でない場合に発生します。
//emlist[][ruby]{
p Time.gm...