Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for applicationClasspath (1.75 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                if (!useOptionsFile) {
                    // Serialize the application classpath, this is consumed by BootstrapSecurityManager
                    outstr.writeInt(applicationClasspath.size());
                    for (File file : applicationClasspath) {
                        outstr.writeUTF(file.getAbsolutePath());
                    }
                    // Serialize the actual security manager type, this is consumed by BootstrapSecurityManager
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultMultiRequestWorkerProcessBuilder.java

            workerProcessBuilder.setImplementationClasspath(implementationClasspath.getAsURLs());
        }
    
        @Override
        public WorkerProcessSettings applicationClasspath(Iterable<File> files) {
            workerProcessBuilder.applicationClasspath(files);
            return this;
        }
    
        @Override
        public WorkerProcessSettings applicationModulePath(Iterable<File> files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top