Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for applicationClasspath (0.57 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkedTestClasspath.java

        ) {
            this.applicationClasspath = applicationClasspath;
            this.applicationModulepath = applicationModulepath;
            this.implementationClasspath = implementationClasspath;
            this.implementationModulepath = implementationModulepath;
        }
    
        public ImmutableList<File> getApplicationClasspath() {
            return applicationClasspath;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                List<TestFrameworkDistributionModule> applicationClasspath,
                List<TestFrameworkDistributionModule> applicationModulepath,
                List<TestFrameworkDistributionModule> implementationClasspath,
                List<TestFrameworkDistributionModule> implementationModulepath
            ) {
                this.applicationClasspath = applicationClasspath;
                this.applicationModulepath = applicationModulepath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            when:
            def framework = newFramework(false, [], [], [], [])
            def classpath = underTest.create([new File("cls.jar")], [new File("mod.jar")], framework, false)
    
            then:
            classpath.applicationClasspath == [new File("cls.jar")]
            classpath.applicationModulepath == [new File("mod.jar")]
            classpath.implementationClasspath.size() == NUM_INTERNAL_JARS + NUM_EXTERNAL_JARS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

                builder.applicationClasspath(classPathRegistry.getClassPath("MINIMUM_WORKER_RUNTIME").getAsFiles());
                builder.useApplicationClassloaderOnly();
                builder.applicationClasspath(toFiles(flatClassLoaderStructure.getSpec()));
            } else {
                builder.applicationClasspath(classPathRegistry.getClassPath("CORE_WORKER_RUNTIME").getAsFiles());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

        }
    
        @Override
        public WorkerProcessBuilder applicationClasspath(Iterable<File> files) {
            for (File file : files) {
                if (file == null) {
                    throw new IllegalArgumentException("Illegal null value provided in this collection: " + files);
                }
                if (isEntryValid(file)) {
                    applicationClasspath.add(file);
                }
            }
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrWorkerManager.java

            builder.setBaseName("Gradle ANTLR Worker");
    
            if (antlrClasspath != null) {
                builder.applicationClasspath(antlrClasspath);
            }
            builder.sharedPackages("antlr", "org.antlr");
            JavaExecHandleBuilder javaCommand = builder.getJavaCommand();
            javaCommand.setWorkingDir(workingDir);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultSingleRequestWorkerProcessBuilder.java

            return this;
        }
    
        @Override
        public String getBaseName() {
            return builder.getBaseName();
        }
    
        @Override
        public WorkerProcessSettings applicationClasspath(Iterable<File> files) {
            builder.applicationClasspath(files);
            return this;
        }
    
        @Override
        public Set<File> getApplicationClasspath() {
            return builder.getApplicationClasspath();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 09:27:37 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessSettings.java

     */
    public interface WorkerProcessSettings {
        WorkerProcessSettings setBaseName(String baseName);
    
        String getBaseName();
    
        WorkerProcessSettings applicationClasspath(Iterable<File> files);
    
        Set<File> getApplicationClasspath();
    
        WorkerProcessSettings applicationModulePath(Iterable<File> files);
    
        Set<File> getApplicationModulePath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 01 18:40:53 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top