You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was an regression introduced by #31
The main purpose of xargs was to ensure the command line is never too long to exceed getconf ARG_MAX, which is likely 2M.
To repro:
Closesfacebookincubator#62
We removed the depedency on xargs to for better windows compatibility.
However, xargs was mainly introduced to break shell call into multiple
ones to avoid hitting the system limit when we have tens of thousands
files. We need to simulate this behavior.
watashi
added a commit
to watashi/retrie
that referenced
this issue
Mar 22, 2024
Closesfacebookincubator#62
We removed the depedency on xargs to for better windows compatibility.
However, xargs was mainly introduced to break shell call into multiple
ones to avoid hitting the system limit when we have tens of thousands
files. We need to simulate this behavior.
#63)
Closes#62
We removed the depedency on xargs to for better windows compatibility.
However, xargs was mainly introduced to break shell call into multiple
ones to avoid hitting the system limit when we have tens of thousands
files. We need to simulate this behavior.
This was an regression introduced by #31
The main purpose of
xargs
was to ensure the command line is never too long to exceedgetconf ARG_MAX
, which is likely 2M.To repro:
The text was updated successfully, but these errors were encountered: