| 330 | } |
| 331 | |
| 332 | type DiskLimits struct { |
| 333 | InodeSoft uint64 `json:"inode_soft,omitempty"` |
| 334 | InodeHard uint64 `json:"inode_hard,omitempty"` |
| 335 | |
| 336 | ByteSoft uint64 `json:"byte_soft,omitempty"` |
| 337 | ByteHard uint64 `json:"byte_hard,omitempty"` |
| 338 | |
| 339 | Scope DiskLimitScope `json:"scope,omitempty"` |
| 340 | } |
| 341 | |
| 342 | type MemoryLimits struct { |
| 343 | // Memory usage limit in bytes. |
nothing calls this directly
no outgoing calls
no test coverage detected