()
| 24 | const UnlimitedDisplay = "unlimited" |
| 25 | |
| 26 | func (q SpaceQuota) FormattedMemoryLimit() string { |
| 27 | return formatters.ByteSize(q.MemoryLimit * formatters.MEGABYTE) |
| 28 | } |
| 29 | |
| 30 | func (q SpaceQuota) FormattedInstanceMemoryLimit() string { |
| 31 | if q.InstanceMemoryLimit == -1 { |