Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for applicationClasspath (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top