Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,361 for CLASSPATH (0.3 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/ClassPath.java

         *
         * @param classPath the classpath to append
         * @return the new classpath
         */
        ClassPath plus(ClassPath classPath);
    
        /**
         * Returns a new classpath without entries matching the {@code filter}.
         *
         * @param filter the predicate to match entries to remove
         * @return the new classpath
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

                return false;
            }
            Classpath classpath = (Classpath) o;
            return Objects.equal(entries, classpath.entries);
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(entries);
        }
    
        @Override
        public String toString() {
            return "Classpath{entries=" + entries + "}";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockingClasspathConfiguration/tests/locking-classpath.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42 bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    exception to the GPLv2, based on the GNU Project exception for its
    Classpath libraries, known as the GNU Classpath Exception, but only
    where Oracle has expressly included in the particular source file's
    header the words "Oracle designates this particular file as subject to
    the "Classpath" exception as provided by Oracle in the LICENSE file
    that accompanied this code."
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top