()
| 628 | } |
| 629 | |
| 630 | func (e *Env) ensureMutableLimits() { |
| 631 | if e.limitsShared { |
| 632 | e.limits = maps.Clone(e.limits) |
| 633 | e.limitsShared = false |
| 634 | } |
| 635 | } |
| 636 | |
| 637 | // HasFeature checks whether the environment enables the given feature |
| 638 | // flag, as enumerated in options.go. |