Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for applicationModulePath (0.39 sec)

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

        private final ImmutableList<File> applicationModulepath;
        private final ImmutableList<URL> implementationClasspath;
        public final ImmutableList<URL> implementationModulepath;
    
        public ForkedTestClasspath(
            ImmutableList<File> applicationClasspath,
            ImmutableList<File> applicationModulepath,
            ImmutableList<URL> implementationClasspath,
    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. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            List<File> classpath = new ArrayList<>();
            List<File> modulePath = new ArrayList<>();
    
            if (runAsModule) {
                modulePath.addAll(workerMainClassPath);
            } else {
                classpath.addAll(workerMainClassPath);
            }
            modulePath.addAll(applicationModulePath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

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

            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. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

            return applicationClasspath;
        }
    
        @Override
        public WorkerProcessBuilder applicationModulePath(Iterable<File> files) {
            GUtil.addToCollection(applicationModulePath, files);
            return this;
        }
    
        @Override
        public Set<File> getApplicationModulePath() {
            return applicationModulePath;
        }
    
        @Override
        public WorkerProcessBuilder sharedPackages(String... packages) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultSingleRequestWorkerProcessBuilder.java

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

        String getBaseName();
    
        WorkerProcessSettings applicationClasspath(Iterable<File> files);
    
        Set<File> getApplicationClasspath();
    
        WorkerProcessSettings applicationModulePath(Iterable<File> files);
    
        Set<File> getApplicationModulePath();
    
        WorkerProcessSettings sharedPackages(String... packages);
    
        WorkerProcessSettings sharedPackages(Iterable<String> packages);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 01 18:40:53 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultMultiRequestWorkerProcessBuilder.java

            workerProcessBuilder.applicationClasspath(files);
            return this;
        }
    
        @Override
        public WorkerProcessSettings applicationModulePath(Iterable<File> files) {
            workerProcessBuilder.applicationModulePath(files);
            return this;
        }
    
        @Override
        public Set<File> getApplicationModulePath() {
            return workerProcessBuilder.getApplicationModulePath();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessBuilder.java

     */
    public interface WorkerProcessBuilder extends WorkerProcessSettings {
        @Override
        WorkerProcessBuilder applicationClasspath(Iterable<File> files);
    
        @Override
        WorkerProcessBuilder applicationModulePath(Iterable<File> files);
    
        @Override
        WorkerProcessBuilder setBaseName(String baseName);
    
        @Override
        WorkerProcessBuilder setLogLevel(LogLevel logLevel);
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessorTest.groovy

            ))
    
            when:
            processor.forkProcess()
    
            then:
            1 * workerProcessBuilder.applicationClasspath(_) >> { assert it[0] == appClasspath }
            1 * workerProcessBuilder.applicationModulePath(_) >> { assert it[0] == appModulepath}
            1 * workerProcessBuilder.setImplementationClasspath(_) >> { assert it[0] == implClasspath }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top