Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for implementationClassPath (0.42 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/PluginUnderTestMetadata.java

                properties.setProperty(IMPLEMENTATION_CLASSPATH_PROP_KEY, implementationClasspath());
            }
    
            File outputFile = new File(getOutputDirectory().get().getAsFile(), METADATA_FILE_NAME);
            saveProperties(properties, outputFile);
        }
    
        private String implementationClasspath() {
            StringBuilder implementationClasspath = new StringBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

    }
    
    configurations {
        implementationClasspath {
            extendsFrom implementation
        }
        compileOnlyClasspath {
            extendsFrom compileOnly
        }
    }
    
    dependencies {
        implementation 'org.gradle.test:implementation:1.0'
        compileOnly 'org.gradle.test:compileOnly:1.0'
    }
    
    task checkImplementation {
        def implementationClasspath = configurations.implementationClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. 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,
            ImmutableList<URL> implementationModulepath
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTestKitSetupIntegrationTest.groovy

            assert !pluginMetadata.text.contains("#")
            def implementationClasspath = GUtil.loadProperties(pluginMetadata).getProperty(IMPLEMENTATION_CLASSPATH_PROP_KEY)
            assert !implementationClasspath.contains("\\")
            def expectedEntries = normaliseFileAndLineSeparators(expected.collect { it.absolutePath }.join(File.pathSeparator))
            assert implementationClasspath == expectedEntries
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9.6K 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. 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)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClasspathUtil.java

            }
        }
    
        public static ClassPath getClasspath(ClassLoader classLoader) {
            final List<File> implementationClassPath = new ArrayList<File>();
            collectClasspathOf(classLoader, implementationClassPath);
            return DefaultClassPath.of(implementationClassPath);
        }
    
        public static void collectClasspathOf(ClassLoader classLoader, final Collection<File> classpathFiles) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoader.java

            ClassPath implementationClasspath = distribution.getToolingImplementationClasspath(progressLoggerFactory, progressListener, connectionParameters, cancellationToken);
            LOGGER.debug("Using tooling provider classpath: {}", implementationClasspath);
            FilteringClassLoader.Spec filterSpec = new FilteringClassLoader.Spec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessBuilder.java

        @Override
        WorkerProcessBuilder sharedPackages(String... packages);
    
        Action<? super WorkerProcessContext> getWorker();
    
        void setImplementationClasspath(List<URL> implementationClasspath);
    
        void setImplementationModulePath(List<URL> implementationModulePath);
    
        void enableJvmMemoryInfoPublishing(boolean shouldPublish);
    
        void setNativeServicesMode(NativeServicesMode mode);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top