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
At the moment scripts are passed to the interpreter as a /dev/fd/{N} path, with the descriptor being a pipe if the script is less than 1MiB, or a temporary file if it is larger.
On Linux there is a third alternative (perhaps better than both) by using a memfd, as per:
At the moment scripts are passed to the interpreter as a
/dev/fd/{N}
path, with the descriptor being a pipe if the script is less than 1MiB, or a temporary file if it is larger.On Linux there is a third alternative (perhaps better than both) by using a
memfd
, as per:The text was updated successfully, but these errors were encountered: