Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setJvm (3.03 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            this.jvm = jvm;
            this.effectiveJvmOptions = effectiveJvmOptions;
        }
    
        public JvmOptions getJvmOptions() {
            return effectiveJvmOptions;
        }
    
        public JavaInfo getJvm() {
            return jvm;
        }
    
        public boolean isLowMemoryProcess() {
            return Runtime.getRuntime().maxMemory() <= 64L * 1024 * 1024; // 64MB is our default for a launcher process
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            return new DefaultDaemonContext(
                UUID.randomUUID().toString(),
                currentProcess.getJvm().getJavaHome(),
                JavaLanguageVersion.current(),
                null, 0L, 0,
                // The gradle options aren't being properly checked.
                requestContext.getDaemonOpts(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    			if dstyp != sym.SWINDOWS {
    				return fmt.Errorf("internal error in windynrelocsym: underlying sym for %q has wrong type %s", sname, dstyp.String())
    			}
    
    			// Redirect relocation to the dynimport.
    			r.SetSym(ds)
    			continue
    		}
    
    		tplt := ctxt.loader.SymPlt(targ)
    		if tplt == loadpe.CreateImportStubPltToken {
    
    			// Consistency check: don't want to see both PLT and GOT tokens.
    			if tgot != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top