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
import _judger
a = _judger.run(max_cpu_time=1000,
max_real_time=2000,
max_memory=128 * 1024 * 1024,
max_process_number=200,
max_output_size=10000,
max_stack=32 * 1024 * 1024,
# five args above can be _judger.UNLIMITED
exe_path="/home/bloodnighttw/git/Judger/tests/a.out",
input_path="a.out",
output_path="echo.out",
error_path="echo.out",
# can be empty list
args=["HelloWorld"],
# can be empty list
env=["foo=bar"],
log_path="judger.log",
# can be None
seccomp_rule_name="c_cpp",
uid=0,
gid=0)
print(str(a))
No description provided.
The text was updated successfully, but these errors were encountered: