Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
09d7889e
Unverified
Commit
09d7889e
authored
4 years ago
by
Claudia
Browse files
Options
Downloads
Patches
Plain Diff
Extract constant IO_DEFAULT_BUFFER_SIZE
parent
246db8a1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/utils/popen.rb
+4
-1
4 additions, 1 deletion
Library/Homebrew/utils/popen.rb
with
4 additions
and
1 deletion
Library/Homebrew/utils/popen.rb
+
4
−
1
View file @
09d7889e
# frozen_string_literal: true
module
Utils
IO_DEFAULT_BUFFER_SIZE
=
4096
private_constant
:IO_DEFAULT_BUFFER_SIZE
def
self
.
popen_read
(
*
args
,
**
options
,
&
block
)
popen
(
args
,
"rb"
,
options
,
&
block
)
end
...
...
@@ -18,7 +21,7 @@ module Utils
# Before we yield to the block, capture as much output as we can
loop
do
output
+=
pipe
.
read_nonblock
(
4096
)
output
+=
pipe
.
read_nonblock
(
IO_DEFAULT_BUFFER_SIZE
)
rescue
IO
::
WaitReadable
,
EOFError
break
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment