Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,064 for classPath (0.19 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java

        public ClasspathContainer(List<ArtifactMetadata> classpath, ArtifactScopeEnum scope) {
            this(scope);
            this.classpath = classpath;
        }
    
        // -------------------------------------------------------------------------------------------
        public Iterator<ArtifactMetadata> iterator() {
            return classpath == null ? null : classpath.iterator();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/jvm/war/src/main/java/org/gradle/api/tasks/bundling/War.java

        public FileCollection getClasspath() {
            return classpath;
        }
    
        /**
         * Sets the classpath to include in the WAR archive.
         *
         * @param classpath The classpath. Must not be null.
         * @since 4.0
         */
        public void setClasspath(FileCollection classpath) {
            setClasspath((Object) classpath);
        }
    
        /**
         * Sets the classpath to include in the WAR archive.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/AbstractEclipseTestSourcesIntegrationTest.groovy

            doesNotHaveTestAttribute(classpath.sourceDir(path))
        }
    
        private static void jarHasTestAttribute(EclipseClasspathFixture classpath, String jarName) {
            hasTestAttribute(classpath.lib(jarName))
        }
    
        private static void jarDoesNotHaveTestAttribute(EclipseClasspathFixture classpath, String jarName) {
            doesNotHaveTestAttribute(classpath.lib(jarName))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/HashedClasspath.java

    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.hash.HashCode;
    
    import java.io.Serializable;
    
    /**
     * Immutable classpath with it's precomputed hash.
     */
    public class HashedClasspath implements Serializable {
        private final ClassPath classpath;
        private final HashCode hash;
    
        public HashedClasspath(ClassPath classpath, HashCode hash) {
            this.classpath = classpath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            classpath.configure(newEntries)
    
            then:
            def entriesToBeKept = customEntries - allDependencies - jreContainer - outputLocation - srcFolder
            classpath.entries == entriesToBeKept + newEntries
        }
    
        def "load defaults"() {
            when:
            classpath.loadDefaults()
    
            then:
            classpath.entries == []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/CachedClasspathTransformer.java

            BuildLogic, None
        }
    
        /**
         * Transforms a classpath to a classpath with the given transformations applied.
         */
        ClassPath transform(ClassPath classPath, StandardTransform transform);
    
        /**
         * Transforms a classpath to a classpath with the given transformations applied.
         */
        ClassPath transform(ClassPath classPath, ClassTransform additional);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinSettingsScriptModelCrossVersionSpec.groovy

                    dependencies {
                        classpath(files("${normalizedPathOf(projectDependency)}"))
                    }
                }
            """
    
            when:
            def classPath = canonicalClassPathFor(projectDir, settings)
    
            then:
            assertAppropriatelyContainsBuildSrc(classPath)
            assertContainsGradleKotlinDslJars(classPath)
            assertIncludes(classPath, settingsDependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top