Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for applicationClasspath (0.14 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessorTest.groovy

                appClasspath, appModulepath, implClasspath, implModulepath
            ))
    
            when:
            processor.forkProcess()
    
            then:
            1 * workerProcessBuilder.applicationClasspath(_) >> { assert it[0] == appClasspath }
            1 * workerProcessBuilder.applicationModulePath(_) >> { assert it[0] == appModulepath}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessor.java

            builder.setImplementationClasspath(classpath.getImplementationClasspath());
            builder.setImplementationModulePath(classpath.getImplementationModulepath());
            builder.applicationClasspath(classpath.getApplicationClasspath());
            builder.applicationModulePath(classpath.getApplicationModulepath());
            // Disabled for faster startup, see https://github.com/gradle/gradle/pull/1883
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top