Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,059 for _classpath (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DirectoryOutputArtifactIntegrationTest.groovy

            buildFile << '''
    
            configurations {
                compile
                _classpath
            }
    
            artifacts {
                _classpath file("someDir")
            }
    
            dependencies {
                compile project(path: ':', configuration: '_classpath')
            }
    
            def files = configurations.compile
    
            task check {
                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/Classpath.java

     *     This normalization applies to not only files directly on the classpath, but also
     *     to any jar files found inside directories or nested inside other jar files.
     *     If a directory is a classpath entry, then the root directory itself is ignored.
     *     The files in the directory are sorted and the relative path to the root directory is used as normalized path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r60/AbstractKotlinDslScriptsModelCrossVersionSpec.groovy

            def aClassPath = canonicalClasspathOf(model, spec.scripts.a)
            assertContainsBuildSrc(aClassPath)
            assertIncludes(aClassPath, spec.jars.root, spec.jars.a)
            assertExcludes(aClassPath, spec.jars.b)
    
            def bClassPath = canonicalClasspathOf(model, spec.scripts.b)
            assertContainsBuildSrc(bClassPath)
            assertIncludes(bClassPath, spec.jars.root, spec.jars.b)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpIntegrationTest.groovy

            def projectModules = parseComponentFile(project: "web")
            assert getHandleFilenames(projectModules) == ["java1", "java2", "groovy"] as Set
            def classpath1 = classpath("web")
            classpath1.libs.size() == 2
            classpath1.lib("myartifact-1.0.jar")
            classpath1.lib("myartifactdep-1.0.jar")
    
            generateEclipseFilesForWebProject("1.2.3")
            def projectModules2 = parseComponentFile(project: "web")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/DefaultClassPathTest.groovy

            def cp2 = ClassPath.EMPTY
    
            expect:
            (cp1 + cp2).is(cp1)
        }
    
        def "add returns rhs when lhs is empty"() {
            def cp1 = ClassPath.EMPTY
            def cp2 = DefaultClassPath.of(new File("a.jar"))
    
            expect:
            (cp1 + cp2).is(cp2)
        }
    
        def "can add collection of files to classpath"() {
            def file1 = new File("a.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

                // If we are pretending that we don't have a sourcepath, the compiler will
                // look on the classpath for sources. Since we don't want to bring in any
                // sources implicitly from the classpath, we have to ignore source files
                // found on the classpath.
                if (location.equals(StandardLocation.CLASS_PATH)) {
                    kinds.remove(JavaFileObject.Kind.SOURCE);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkedTestClasspath.java

     * are specified by {@link WorkerProcessBuilder#sharedPackages}, but should likely be tracked in this class as well.</p>
     *
     * <p>This classpath is intended to be consumed by the {@link ForkingTestClassProcessor}.</p>
     */
    public class ForkedTestClasspath {
        private final ImmutableList<File> applicationClasspath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top