Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for implementationClassPath (0.29 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            classpath.implementationClasspath.size() == NUM_INTERNAL_JARS + NUM_EXTERNAL_JARS + 2
            classpath.implementationClasspath.findAll { it.toString().endsWith("-internal.jar") }.size() == NUM_INTERNAL_JARS
            classpath.implementationClasspath.findAll { it.toString().endsWith("-external.jar") }.size() == NUM_EXTERNAL_JARS + 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            expect:
            def module = registry.getModule("gradle-some-module")
            module.implementationClasspath.asFiles == [classesDir, resourcesDir, staticResourcesDir]
            module.runtimeClasspath.asFiles == [externalRuntimeDep]
    
            def dep = registry.getExternalModule("dep")
            dep.implementationClasspath.asFiles == [externalRuntimeDep]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                this.applicationModulepath = applicationModulepath;
                this.implementationClasspath = implementationClasspath;
                this.implementationModulepath = implementationModulepath;
            }
    
            public boolean isEmpty() {
                return applicationClasspath.isEmpty() && applicationModulepath.isEmpty() &&
                    implementationClasspath.isEmpty() && implementationModulepath.isEmpty();
            }
        }
    
    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/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            if (jarFile != null) {
                Set<File> implementationClasspath = new LinkedHashSet<>();
                implementationClasspath.add(jarFile);
                Properties properties = loadModuleProperties(moduleName, jarFile);
                return module(moduleName, properties, implementationClasspath);
            }
    
            String resourceName = getClasspathManifestName(moduleName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                if (runAsModule || implementationModulePath == null) {
                    outstr.writeInt(implementationClassPath.size());
                    for (URL entry : implementationClassPath) {
                        outstr.writeUTF(entry.toString());
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

            this.logLevel = logLevel;
            return this;
        }
    
        @Override
        public void setImplementationClasspath(List<URL> implementationClassPath) {
            this.implementationClassPath = implementationClassPath;
        }
    
        @Override
        public void setImplementationModulePath(List<URL> implementationModulePath) {
            this.implementationModulePath = implementationModulePath;
    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. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

            }
    
            // Read worker implementation classpath
            int classPathLength = instr.readInt();
            URL[] implementationClassPath = new URL[classPathLength];
            for (int i = 0; i < classPathLength; i++) {
                String url = instr.readUTF();
                implementationClassPath[i] = new URL(url);
            }
    
            ClassLoader implementationClassLoader;
            if (classPathLength > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultMultiRequestWorkerProcessBuilder.java

            this.workerProcessBuilder = workerProcessBuilder;
            ClassPath implementationClasspath = ClasspathUtil.getClasspath(workerImplementation.getClassLoader());
            this.outputEventListener = outputEventListener;
            workerProcessBuilder.worker(new WorkerAction(workerImplementation));
            workerProcessBuilder.setImplementationClasspath(implementationClasspath.getAsURLs());
        }
    
        @Override
    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/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

        }
    
        def module(String name, Module... requiredModules) {
            Module module = Mock()
            _ * module.classpath >> DefaultClassPath.of(new File("$name-runtime"))
            _ * module.implementationClasspath >> DefaultClassPath.of(new File("$name-runtime"))
            _ * module.allRequiredModules >> (([module] + (requiredModules as List)) as LinkedHashSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top