Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,390 for _classpath (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/JavaExecHandleBuilder.java

            FileCollection rtClasspath = javaModuleDetector.inferClasspath(modularity.getInferModulePath().get(), classpath);
    
            if (rtClasspath != null && !rtClasspath.isEmpty()) {
                allArgs.add("-cp");
                allArgs.add(CollectionUtils.join(File.pathSeparator, rtClasspath));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    For details on what level of understanding Gradle has for detecting changes to classpaths and what is considered as a classpath see <<incremental_build.adoc#sec:task_input_using_classpath_annotations,this section>>.
    
    [[filter_runtime_classpath]]
    ===== Filtering runtime classpaths
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

    import org.gradle.internal.classloader.CachingClassLoader
    import org.gradle.internal.classloader.DefaultHashingClassLoaderFactory
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

            // TODO:isolated support precompiled scripts
            IntermediateScriptModel(it, ClassPath.EMPTY, ClassPath.EMPTY, emptyList())
        }
    }
    
    
    private
    fun buildOutputModel(scriptFile: File, classPath: ClassPath, sourcePath: ClassPath, implicitImports: List<String>, exceptions: List<Exception>) =
        StandardKotlinDslScriptModel(
            classPath.asFiles,
            sourcePath.asFiles,
            implicitImports,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

         * This method was originally added in order to release the resources of the {@code classpath}
         * configurations used for resolving buildscript classpaths, as they consumed a non-negligible
         * amount of memory even after the buildscript classpath was assembled.
         * <p>
         * Future work in this area should remove the need of this method by instead caching resolution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ScriptClassloadingIntegrationTest.groovy

                        ${mavenCentralRepository()}
                        dependencies {
                            // Dynamically changing the classpath here surfaces problems with the ClassLoaderCache
                            classpath "org.apache.commons:commons-lang3:\${version}"
                        }
                    }
    
                    task doStringOp {
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. 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)
Back to top