種類
- インスタンスメソッド (103)
- モジュール関数 (62)
- 定数 (53)
- 特異メソッド (33)
- ライブラリ (12)
クラス
-
Enumerator
:: ArithmeticSequence (7) -
RDoc
:: Options (24) -
Rake
:: FileList (36) - Range (24)
- Shell (3)
-
Shell
:: ProcessController (6) - Socket (12)
- String (12)
- Thread (17)
モジュール
- Fcntl (12)
-
File
:: Constants (12) - Kernel (62)
-
Socket
:: Constants (12) -
Sync
_ m (12)
キーワード
-
MCAST
_ EXCLUDE (24) -
MUTEX
_ FOR _ THREAD _ EXCLUSIVE (5) -
O
_ EXCL (12) -
clear
_ exclude (12) -
debug
_ output _ exclusive _ unlock (3) - exclude (24)
- exclude= (12)
-
exclude
_ end? (19) -
excluded
_ from _ list? (12) - exclusive (12)
- exclusive? (6)
- fcntl (12)
- new (12)
- open (14)
-
process
_ controllers _ exclusive (6) - spawn (48)
-
sync
_ exclusive? (6) - upto (12)
検索結果
先頭5件
-
File
:: Constants :: EXCL -> Integer (18101.0) -
CREATと併用し、もしファイルが既にある場合には失敗します。 File.openで使用します。
CREATと併用し、もしファイルが既にある場合には失敗します。
File.openで使用します。 -
Fcntl
:: O _ EXCL -> Integer (6101.0) -
ファイルが存在する場合に失敗します。Fcntl::O_CREAT と一緒に使用します。
ファイルが存在する場合に失敗します。Fcntl::O_CREAT と一緒に使用します。 -
Enumerator
:: ArithmeticSequence # exclude _ end? -> bool (6100.0) -
末項(終端)を含まないとき真を返します。
末項(終端)を含まないとき真を返します。 -
RDoc
:: Options # exclude -> Regexp (6100.0) -
コマンドライン引数の --exclude オプションで指定した正規表現を返します。 複数指定していた場合は、1 つの Regexp オブジェクトにまとめられた ものを返します。
...コマンドライン引数の --exclude オプションで指定した正規表現を返します。
複数指定していた場合は、1 つの Regexp オブジェクトにまとめられた
ものを返します。... -
RDoc
:: Options # exclude=(val) (6100.0) -
コマンドライン引数の --exclude オプションと同様の指定を行います。
...コマンドライン引数の --exclude オプションと同様の指定を行います。
@param val 設定するパターンを Regexp オブジェクトで指定します。... -
Rake
:: FileList # clear _ exclude -> self (6100.0) -
登録されている除外リストをクリアします。
...する
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test.rb", "test.bak")
file_list.exclude("test.rb")
# DEFAULT_IGNORE_PATTERNS と "test.rb" の双方の除外がクリアされる
file_list.clear_exclude
file_list # => ["test.rb", "test.bak"]
end
//}... -
Rake
:: FileList # exclude(*patterns) {|entry| . . . } -> self (6100.0) -
自身から取り除くべきファイル名のパターンを自身の除外リストに登録します。
...例:
FileList['a.c', 'b.c'].exclude("a.c") # => ['b.c']
FileList['a.c', 'b.c'].exclude(/^a/) # => ['b.c']
# If "a.c" is a file, then ...
FileList['a.c', 'b.c'].exclude("a.*") # => ['b.c']
# If "a.c" is not a file, then ...
FileList['a.c', 'b.c'].exclude("a.*") # => ['a.c', 'b.c']... -
Rake
:: FileList # excluded _ from _ list?(file _ name) -> bool (6100.0) -
与えられたファイル名が除外される場合は、真を返します。 そうでない場合は偽を返します。
...st1.rb", "test")
IO.write("test2.rb", "test")
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb")
file_list.exclude("test1.rb")
file_list.excluded_from_list?("test1.rb") # => true
file_list.excluded_from_list?("test2.rb") # => false
end
//}... -
Range
# exclude _ end? -> bool (6100.0) -
範囲オブジェクトが終端を含まないとき真を返します。
...範囲オブジェクトが終端を含まないとき真を返します。
//emlist[例][ruby]{
(1..5).exclude_end? # => false
(1...5).exclude_end? # => true
//}...