Update RBI files for parallel.

Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow.
This commit is contained in:
BrewTestBot 2023-12-18 16:36:31 +00:00
parent 35a27d444a
commit a297162ead
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
2 changed files with 11 additions and 1 deletions

View File

@ -78,7 +78,14 @@ module Parallel
# source://parallel//lib/parallel.rb#642
def instrument_finish(item, index, result, options); end
# source://parallel//lib/parallel.rb#647
# yield results in the order of the input items
# needs to use `options` to store state between executions
# needs to use `done` index since a nil result would also be valid
#
# source://parallel//lib/parallel.rb#651
def instrument_finish_in_order(item, index, result, options); end
# source://parallel//lib/parallel.rb#671
def instrument_start(item, index, options); end
# source://parallel//lib/parallel.rb#590

View File

@ -363,6 +363,9 @@ module Cask
sig { returns(T::Boolean) }
def on_system_blocks_exist?; end
sig { returns(T::Boolean) }
def deprecated?; end
sig { returns(T::Boolean) }
def disabled?; end