ZingJRE implements the JRE interface for Azul Platform Prime (Zing) JRE Zing JRE requires a user-provided repository via JBP_CONFIG_ZING_JRE environment variable Unlike other JREs, Zing does NOT use jvmkill or memory calculator - only adds -XX:+ExitOnOutOfMemoryError
| 11 | // Zing JRE requires a user-provided repository via JBP_CONFIG_ZING_JRE environment variable |
| 12 | // Unlike other JREs, Zing does NOT use jvmkill or memory calculator - only adds -XX:+ExitOnOutOfMemoryError |
| 13 | type ZingJRE struct { |
| 14 | ctx *common.Context |
| 15 | jreDir string |
| 16 | version string |
| 17 | javaHome string |
| 18 | installedVersion string |
| 19 | } |
| 20 | |
| 21 | // NewZingJRE creates a new Zing JRE provider |
| 22 | func NewZingJRE(ctx *common.Context) *ZingJRE { |
nothing calls this directly
no outgoing calls
no test coverage detected