MCPcopy Index your code
hub / github.com/cloudfoundry/java-buildpack / ZingJRE

Struct ZingJRE

src/java/jres/zing.go:13–19  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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
13type 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
22func NewZingJRE(ctx *common.Context) *ZingJRE {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected