We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2cf6663 + fc985aa commit 031e38dCopy full SHA for 031e38d
config.md
@@ -840,6 +840,7 @@ Here is a full example `config.json` for reference.
840
"realtimeRuntime": 950000,
841
"realtimePeriod": 1000000,
842
"cpus": "2-3",
843
+ "idle": 1,
844
"mems": "0-7"
845
},
846
"devices": [
specs-go/config.go
@@ -331,7 +331,7 @@ type LinuxCPU struct {
331
// List of memory nodes in the cpuset. Default is to use any available memory node.
332
Mems string `json:"mems,omitempty"`
333
// cgroups are configured with minimum weight, 0: default behavior, 1: SCHED_IDLE.
334
- Idle int64 `json:"idle"`
+ Idle *int64 `json:"idle,omitempty"`
335
}
336
337
// LinuxPids for Linux cgroup 'pids' resource management (Linux 4.3)
0 commit comments