Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GradleWorkerMain (0.11 sec)

  1. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

     * sets up the worker ClassLoader, and then delegates to {@link org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker} to deserialize and execute the action.
     */
    public class GradleWorkerMain {
        public void run() throws Exception {
            DataInputStream instr = new DataInputStream(new EncodedStream.EncodedInput(System.in));
    
            // Read shared packages
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                }
    
                // Serialize the shared packages, this is consumed by GradleWorkerMain
                outstr.writeInt(sharedPackages.size());
                for (String str : sharedPackages) {
                    outstr.writeUTF(str);
                }
    
                // Serialize the worker implementation classpath, this is consumed by GradleWorkerMain
                if (runAsModule || implementationModulePath == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top