Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 977 for CLASSPATH (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultClassLoaderScope.java

            if (additionalLoaders == null) {
                return loader(id, parent, classPath);
            }
            return new CachingClassLoader(multiLoader(id, parent, classPath, additionalLoaders));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScopeTest.kt

            }
    
            ScriptHandlerScope(buildscript).apply {
                dependencies {
                    classpath(notation)
                    classpath(notation) { exclude(module = "com.google.guava") }
                }
            }
    
            verify(dependencies).add(eq("classpath"), eq(notation))
            verify(dependencies).addProvider(eq("classpath"), eq(notation), any<Action<ExternalModuleDependency>>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/Testing.kt

        return o as T
    }
    
    
    inline fun withClassLoaderFor(vararg classPath: File, action: ClassLoader.() -> Unit) =
        classLoaderFor(*classPath).use(action)
    
    
    inline fun withClassLoaderFor(classPath: ClassPath, action: ClassLoader.() -> Unit) =
        classLoaderFor(classPath).use(action)
    
    
    fun classLoaderFor(classPath: ClassPath): URLClassLoader =
        classLoaderFor(*classPath.asFiles.toTypedArray())
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/tasks/GroovyRuntimeTest.groovy

            ])
    
            then:
            classpath.files.size() == 13
            classpath.files.contains(project.file("groovy-${groovyVersion}.jar"))
            classpath.files.contains(project.file("groovy-ant-${groovyVersion}.jar"))
            classpath.files.contains(project.file("groovy-astbuilder-${groovyVersion}.jar"))
            classpath.files.contains(project.file("groovy-console-${groovyVersion}.jar"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseDependencySubstitutionIntegrationTest.groovy

                substitute module("junit:junit:4.7") using project(":project1")
            }
        }
    }
    """)
    
            def classpath = classpath("project2")
            assert classpath.projects.collect { it.name } == ["project1"]
            assert classpath.libs == []
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void "transitive external dependency substituted with project dependency"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ImmutableClassLoaderScope.java

        private final ClassLoaderScope parent;
        private final ClassPath classPath;
        @Nullable
        private final HashCode classpathImplementationHash;
        private final ClassLoader localClassLoader;
    
        public ImmutableClassLoaderScope(
            ClassLoaderScopeIdentifier id,
            ClassLoaderScope parent,
            @Nullable ClassLoaderScopeOrigin origin,
            ClassPath classPath,
            @Nullable HashCode classpathImplementationHash,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

                "Compile initialization script 'init.gradle' (CLASSPATH)",
                "Compile initialization script 'init.gradle' (BODY)",
                "Compile settings file 'settings.gradle' (CLASSPATH)",
                "Compile settings file 'settings.gradle' (BODY)",
                "Compile build file 'build.gradle' (CLASSPATH)",
                "Compile build file 'build.gradle' (BODY)",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/DynamicModulesClassPathProviderTest.groovy

     */
    package org.gradle.api.internal
    
    import org.gradle.api.JavaVersion
    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 DynamicModulesClassPathProviderTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 18 09:54:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top