Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,443 for CLASSPATH (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingModelsWithDependencyResolutionIntegrationTest.groovy

            then:
            model.size() == 4
            model[0].message == "project :a classpath = 2"
            model[1].message == "project :b classpath = 1"
            model[2].message == "project :c classpath = 0"
            model[3].message == "project :d classpath = 0"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluator.kt

            override fun compilationClassPathOf(classLoaderScope: ClassLoaderScope): ClassPath =
                scriptCompilationClassPath
    
            override fun stage1BlocksAccessorsFor(scriptHost: KotlinScriptHost<*>): ClassPath =
                ClassPath.EMPTY
    
            override fun accessorsClassPathFor(scriptHost: KotlinScriptHost<*>): ClassPath =
                ClassPath.EMPTY
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

            then:
            EclipseClasspathFixture classpath = classpath('.')
            classpath.sourceDir('src/main/java').assertOutputLocation('bin/main')
            classpath.sourceDir('src/main/resources').assertOutputLocation('bin/main')
            classpath.sourceDir('src/test/java').assertOutputLocation('bin/test')
            classpath.sourceDir('src/test/resources').assertOutputLocation('bin/test')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

        }
    
        @Override
        public ClassPath transform(ClassPath classPath, StandardTransform transform) {
            if (classPath.isEmpty()) {
                return classPath;
            }
            return transformPipelineFor(transform).transform(classPath);
    
        }
    
        @FunctionalInterface
        private interface TransformPipeline {
            ClassPath transform(ClassPath original);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultScriptHandlerTest.groovy

            then:
            0 * configuration._
            0 * buildLogicBuilder.resolveClassPath(_, _)
    
            and:
            classpath == ClassPath.EMPTY
        }
    
        def "resolves classpath configuration when configuration container has been queried"() {
            def classpath = Mock(ClassPath)
    
            when:
            handler.configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 19:43:17 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

            executer.withTasks("eclipse").run()
    
            def libs = classpath("a").libs
            assert classpath("a").projects.collect { it.name } == ['b']
            assert libs.size() == 1
            libs[0].assertHasJar(someLib2Jar)
    
            executer.withArgument("-PstrictDeps=true").withTasks("eclipse").run()
    
            libs = classpath("a").libs
            assert classpath("a").projects.collect { it.name } == ['b']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseClasspath.java

    public abstract class GenerateEclipseClasspath extends XmlGeneratorTask<Classpath> {
    
        private EclipseClasspath classpath;
    
        public GenerateEclipseClasspath() {
            getXmlTransformer().setIndentation("\t");
        }
    
        @Inject
        public GenerateEclipseClasspath(EclipseClasspath classpath) {
            this.classpath = classpath;
        }
    
        @Override
        protected Classpath create() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            // the entire set of framework implementation dependencies from the distribution in order to ensure that all implementation
            // dependencies on the classpath share a version. This can _still_ lead to duplicates on the classpath, but it is at least
            // avoidable if the user adds junit-platform-launcher to their test runtime classpath, which they should be doing, since
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/plugin/use/internal/InjectedPluginClasspath.java

     */
    
    package org.gradle.plugin.use.internal;
    
    import org.gradle.internal.classpath.ClassPath;
    
    public class InjectedPluginClasspath {
    
        private final ClassPath classPath;
    
        public InjectedPluginClasspath(ClassPath classPath) {
            this.classPath = classPath;
        }
    
        public ClassPath getClasspath() {
            return classPath;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 961 bytes
    - Viewed (0)
Back to top