Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for classPath (0.54 sec)

  1. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/DefaultClassPathProvider.java

                classpath = classpath.plus(moduleRegistry.getExternalModule("asm").getClasspath());
                classpath = addJavaCompilerModules(classpath);
                return classpath;
            }
            if (name.equals("SCALA-COMPILER")) {
                ClassPath classpath = ClassPath.EMPTY;
                classpath = classpath.plus(moduleRegistry.getModule("gradle-scala").getImplementationClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/DynamicModulesClassPathProvider.java

        }
    
        private ClassPath gradleExtensionsWithout(String... modulesToExclude) {
            Set<Module> coreModules = allRequiredModulesOf(modulesToExclude);
            ClassPath classpath = ClassPath.EMPTY;
            for (String moduleName : GRADLE_EXTENSION_MODULES) {
                Set<Module> extensionModules = allRequiredModulesOf(moduleName);
                classpath = plusExtensionModules(classpath, extensionModules, coreModules);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/DependencyClassPathProvider.java

            ClassPath classpath = ClassPath.EMPTY;
            for (String moduleName : MODULES) {
                classpath = classpath.plus(moduleRegistry.getModule(moduleName).getAllRequiredModulesClasspath());
            }
            for (Module pluginModule : pluginModuleRegistry.getApiModules()) {
                classpath = classpath.plus(pluginModule.getClasspath());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClientOwnedClassLoaderSpec.java

        private final List<URI> classpath;
    
        public ClientOwnedClassLoaderSpec(List<URI> classpath) {
            this.classpath = classpath;
        }
    
        public List<URI> getClasspath() {
            return classpath;
        }
    
        @Override
        public String toString() {
            return "{client-owned-class-loader classpath: " + classpath + "}";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/ClasspathInfererTest.groovy

            factory.getClassPathFor(cl, classpath)
            return classpath.collect { it.toURL() }
        }
    
        /**
         * A classloader that produces classes with CodeSource objects containing the full resource URL,
         * similar to how the NetBeans JarClassLoader works.
         */
        class NetBeansLikeClassLoader extends TestClassLoader {
            NetBeansLikeClassLoader(ClassLoader classLoader, List<File> classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/ClassPathEncodingExtensions.kt

        writeCollection(classPath.asFiles) {
            writeFile(it)
        }
    }
    
    
    internal
    fun Encoder.writeTransformedClassPath(classPath: TransformedClassPath) {
        writeCollection(classPath.asFiles.zip(classPath.asTransformedFiles)) {
            writeFile(it.first)
            writeFile(it.second)
        }
    }
    
    
    internal
    fun Decoder.readClassPath(): ClassPath {
        val isTransformed = readBoolean()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/DefaultClassPathRegistry.java

        }
    
        @Override
        public ClassPath getClassPath(String name) {
            for (ClassPathProvider provider : providers) {
                ClassPath classpath = provider.findClassPath(name);
                if (classpath != null) {
                    return classpath;
                }
            }
            throw new IllegalArgumentException(String.format("unknown classpath '%s' requested.", name));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

     * limitations under the License.
     */
    package org.gradle.api.internal
    
    import org.gradle.api.internal.classpath.Module
    import org.gradle.api.internal.classpath.ModuleRegistry
    import org.gradle.api.internal.classpath.PluginModuleRegistry
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import spock.lang.Specification
    
    class DependencyClassPathProviderTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            final String name;
            final List<URL> classpath;
    
            public String getName() {
                return name;
            }
    
            public Spec(String name, List<URL> classpath) {
                this.name = name;
                this.classpath = classpath;
            }
    
            public List<URL> getClasspath() {
                return classpath;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

        def "Source folder defines one classpath attribute"() {
            settingsFile << 'rootProject.name = "root"'
            buildFile <<
                """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       file {
                           whenMerged { classpath ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top