Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for getAsURLs (0.19 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                moduleRegistry.getModule("gradle-file-temp").getImplementationClasspath().getAsURLs(),
                moduleRegistry.getModule("gradle-hashing").getImplementationClasspath().getAsURLs(),
                moduleRegistry.getModule("gradle-base-services").getImplementationClasspath().getAsURLs(),
                moduleRegistry.getModule("gradle-stdlib-java-extensions").getImplementationClasspath().getAsURLs(),
    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/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/ClassPath.java

         *
         * @return the list of the classpath entries
         */
        List<URL> getAsURLs();
    
        /**
         * Returns the array of URLs of the classpath entries (JARs or class directories) that this classpath consists of. The order is the classpath search order.
         *
         * @return the array of the classpath entries
         * @see #getAsURLs()
         */
        URL[] getAsURLArray();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/GroovyClass.groovy

        }
    
        public Collection<File> getAsFiles() {
            return files;
        }
    
        public URL[] getAsURLArray() {
            Collection<URL> result = getAsURLs();
            return result.toArray(new URL[result.size()]);
        }
    
        public Collection<URL> getAsURLs() {
            List<URL> urls = new ArrayList<URL>();
            for (File file : files) {
                try {
                    urls.add(file.toURI().toURL());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/JavaClass.java

        }
    
        public Collection<File> getAsFiles() {
            return files;
        }
    
        public URL[] getAsURLArray() {
            Collection<URL> result = getAsURLs();
            return result.toArray(new URL[0]);
        }
    
        public Collection<URL> getAsURLs() {
            List<URL> urls = new ArrayList<URL>();
            for (File file : files) {
                try {
                    urls.add(file.toURI().toURL());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/DefaultJdkToolsInitializer.java

                final ClassLoader systemClassLoaderParent = classLoaderFactory.getIsolatedSystemClassLoader();
                ClasspathUtil.addUrl((URLClassLoader) systemClassLoaderParent, DefaultClassPath.of(toolsJar).getAsURLs());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessFactory.java

            DefaultWorkerProcessBuilder builder = newWorkerProcessBuilder();
            builder.worker(workerAction);
            builder.setImplementationClasspath(ClasspathUtil.getClasspath(workerAction.getClass().getClassLoader()).getAsURLs());
            return builder;
        }
    
        @Override
        public <IN, OUT> SingleRequestWorkerProcessBuilder<IN, OUT> singleRequestWorker(Class<? extends RequestHandler<? super IN, ? extends OUT>> workerImplementation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 09 14:01:29 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/EffectiveClassPath.java

        }
    
        private static List<File> findAvailableClasspathFiles(ClassLoader classLoader) {
            List<URL> rawClasspath = ClasspathUtil.getClasspath(classLoader).getAsURLs();
            List<File> classpathFiles = new ArrayList<File>();
            for (URL url : rawClasspath) {
                if (url.getProtocol().equals("file")) {
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/DefaultClassLoaderRegistry.java

            this.gradleApiSpec = apiSpecFor(pluginsClassLoader);
            this.workerExtensionSpec = new MixInLegacyTypesClassLoader.Spec("legacy-mixin-loader", classPathRegistry.getClassPath("GRADLE_WORKER_EXTENSIONS").getAsURLs());
            this.apiAndPluginsClassLoader = restrictTo(gradleApiSpec, pluginsClassLoader);
    
            // Load instrumentation classes from Plugin class loader for instrumentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ClassLoaderStructureProvider.java

            Set<URL> classpath = new LinkedHashSet<>();
            classpath.addAll(DefaultClassPath.of(additionalClasspath).getAsURLs());
    
            Set<ClassLoader> uniqueClassloaders = new HashSet<>();
            for (Class<?> clazz : classes) {
                ClassLoader classLoader = clazz.getClassLoader();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

            Iterable<File> classpath = Iterables.concat(spec.getGroovyClasspath(), antFiles);
            VisitableURLClassLoader.Spec targetGroovyClasspath = new VisitableURLClassLoader.Spec("worker-loader", DefaultClassPath.of(classpath).getAsURLs());
    
            ClassPath languageGroovyClasspath = classPathRegistry.getClassPath("GROOVY-COMPILER");
    
            FilteringClassLoader.Spec gradleAndUserFilter = getMinimalGradleFilter();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top