judge: add strictMemory setting

pull/187/head
undefined 3 years ago
parent b61debc039
commit c67e2b85e3

@ -1,7 +1,7 @@
{
"name": "@hydrooj/hydrojudge",
"bin": "bin/hydrojudge.js",
"version": "2.10.7",
"version": "2.10.8",
"main": "package.json",
"author": "undefined <i@undefined.moe>",
"repository": "https://github.com/hydro-dev/Hydro.git",

@ -57,6 +57,11 @@ disable:
name: disable
desc: Disable builtin judge
default: false
strict_memory:
type: boolean
name: strict_memory
desc: Strict Memory Mode
default: false
env:
type: textarea
name: env

@ -14,6 +14,7 @@ let config = {
tmpfs_size: '256m',
stdio_size: '32m',
memoryMax: '512m',
strict_memory: false,
retry_delay_sec: 15,
sandbox_host: 'http://localhost:5050',
testcases_max: 100,

@ -46,6 +46,7 @@ function proc({
cpuLimit: time * 1000 * 1000 * rate,
realCpuLimit: time * 3000 * 1000 * rate,
memoryLimit: memory * 1024 * 1024,
strictMemoryLimit: getConfig('strict_memory'),
// stackLimit: memory * 1024 * 1024,
procLimit: process_limit,
copyIn,

Loading…
Cancel
Save