Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,292 for classPath (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClassTransform.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.api.file.RelativePath;
    import org.gradle.internal.Pair;
    import org.gradle.internal.classpath.ClassData;
    import org.gradle.internal.classpath.ClasspathEntryVisitor;
    import org.gradle.internal.hash.Hasher;
    import org.objectweb.asm.ClassVisitor;
    
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 07:56:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ide/eclipse/kotlin/build.gradle.kts

    
    // tag::module-before-merged[]
    // tag::module-when-merged[]
    
    eclipse.classpath.file {
    // end::module-when-merged[]
        beforeMerged(Action<Classpath> {
            entries.removeAll { entry -> entry.kind == "lib" || entry.kind == "var" }
        })
    // end::module-before-merged[]
    // tag::module-when-merged[]
        whenMerged(Action<Classpath> { ->
            entries.filter { entry -> entry.kind == "lib" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

        }
    
        String wrapClassDirs(String classpath) {
            if (language == CompiledLanguage.GROOVY) {
                if (useJar) {
                    return "api.jar, ${classpath}, main"
                } else {
                    // api/build/classes/java/main and api/build/classes/groovy/main
                    // impl/build/classes/java/main
                    return "main, main, ${classpath}, main"
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K 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. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java

            res = transform.transform(graph, ArtifactScopeEnum.compile, false);
    
            assertNotNull(res, "null classpath container after compile transform");
            assertNotNull(res.getClasspath(), "null classpath after compile transform");
            assertEquals(3, res.getClasspath().size(), "compile classpath should have 3 entries");
        }
    
        // ------------------------------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

            });
        }
    
        private static File findFile(String prefix, ClassPath classpath) {
            for (File f : classpath.getAsFiles()) {
                if (f.getName().startsWith(prefix)) {
                    return f;
                }
            }
            throw new IllegalStateException(String.format("Cannot find any files starting with %s in %s", prefix, classpath.getAsFiles()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/compileTaskClasspath/kotlin/build.gradle.kts

    plugins {
        groovy
    }
    dependencies {
        implementation(localGroovy())
    }
    
    // tag::compile-task-classpath[]
    tasks.named<AbstractCompile>("compileGroovy") {
        // Groovy only needs the declared dependencies
        // (and not longer the output of compileJava)
        classpath = sourceSets.main.get().compileClasspath
    }
    tasks.named<AbstractCompile>("compileJava") {
        // Java also depends on the result of Groovy compilation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 588 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptHandler.java

        /**
         * If set to {@code true}, the buildscript's {@code classpath} configuration will not be reset after the
         * classpath has been assembled. Defaults to {@code false}.
         */
        public static final String DISABLE_RESET_CONFIGURATION_SYSTEM_PROPERTY = "org.gradle.incubating.reset-buildscript-classpath.disabled";
    
        private static final Logger LOGGER = Logging.getLogger(DefaultScriptHandler.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 17:56:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/LambdaSerializationTransformerTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.transforms
    
    import org.gradle.internal.classanalysis.AsmConstants
    import org.gradle.internal.classpath.ClassWithActionLambda
    import org.gradle.internal.classpath.ClassWithCapturelessLambda
    import org.gradle.internal.classpath.ClassWithObjectCapturingLambda
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassVisitor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 11:19:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/BasicCallInterceptionTest.groovy

    import static org.gradle.internal.classpath.GroovyCallInterceptorsProvider.ClassLoaderSourceGroovyCallInterceptorsProvider
    import static org.gradle.internal.classpath.InstrumentedClasses.nestedClassesOf
    import static org.gradle.internal.classpath.JavaCallerForBasicCallInterceptorTest.doTestNoArg
    import static org.gradle.internal.classpath.JavaCallerForBasicCallInterceptorTest.doTestSingleArg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top