るりまサーチ

最速Rubyリファレンスマニュアル検索!
236件ヒット [1-100件を表示] (0.091秒)
トップページ > クエリ:r[x] > クエリ:EXCL[x]

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. fileutils rm_r
  5. fileutils cp_r

検索結果

<< 1 2 3 > >>

Shell::ProcessController.process_controllers_exclusive -> () (24300.0)

@todo

@todo

File::Constants::EXCL -> Integer (18201.0)

CREATと併用し、もしファイルが既にある場合には失敗します。 File.openで使用します。

...CREATと併用し、もしファイルが既にある場合には失敗します。
File.openで使用します。...

Thread::MUTEX_FOR_THREAD_EXCLUSIVE -> Mutex (15200.0)

Thread.exclusive用のMutexオブジェクトです。

...Thread.exclusive用のMutexオブジェクトです。...
...Thread.exclusive用のMutexオブジェクトです。
(private constant です。)...

Rake::FileList#clear_exclude -> self (12200.0)

登録されている除外リストをクリアします。

.../emlist[][ruby]{
# Rakefile での記載例とする

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
fil...
...e_list # => ["test.rb", "test.bak"]
end
//}...

Rake::FileList#excluded_from_list?(file_name) -> bool (12200.0)

与えられたファイル名が除外される場合は、真を返します。 そうでない場合は偽を返します。

...param file_name ファイル名を指定します。

//emlist[][ruby]{
# Rakefile での記載例とする

IO.write("test1.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
//}...

絞り込み条件を変える

RDoc::Options#exclude -> Regexp (9200.0)

コマンドライン引数の --exclude オプションで指定した正規表現を返します。 複数指定していた場合は、1 つの Regexp オブジェクトにまとめられた ものを返します。

...コマンドライン引数の --exclude オプションで指定した正規表現を返します。
複数指定していた場合は、1 つの Regexp オブジェクトにまとめられた
ものを返します。...

Rake::FileList#exclude(*patterns) {|entry| ... } -> self (9200.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']...

Enumerator::ArithmeticSequence#exclude_end? -> bool (9100.0)

末項(終端)を含まないとき真を返します。

末項(終端)を含まないとき真を返します。

RDoc::Options#exclude=(val) (9100.0)

コマンドライン引数の --exclude オプションと同様の指定を行います。

...コマンドライン引数の --exclude オプションと同様の指定を行います。

@param val 設定するパターンを Regexp オブジェクトで指定します。...

Range#exclude_end? -> bool (9100.0)

範囲オブジェクトが終端を含まないとき真を返します。

...範囲オブジェクトが終端を含まないとき真を返します。

//emlist[例][ruby]{
(1..5).exclude_end? # => false
(1...5).exclude_end? # => true
//}...

絞り込み条件を変える

<< 1 2 3 > >>