Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,443 for CLASSPATH (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypesFixed/groovy/build.gradle

    // tag::task-type[]
    abstract class SomeTask extends DefaultTask {
    
        @InputFiles @Classpath
        abstract ConfigurableFileCollection getClasspath() // <1>
    
        @TaskAction
        void action() {
            def classpathFiles = classpath.files
            // ...
        }
    }
    // end::task-type[]
    
    tasks.register("someTaskType", SomeTask) {
        classpath.from(sourceSets.main.compileClasspath)
    }
    
    // tag::ad-hoc-task[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

        }
    
        def "Classpath container defined in beforeMerged"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       file {
                          beforeMerged { classpath ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                    }
                    dependencies {
                        classpath "${first[0]}"
                        classpath "${second[0]}"
                    }
                }
    
                Thread.currentThread().getContextClassLoader().getURLs()
                    .eachWithIndex { artifact, idx -> println "classpath[\$idx]==\${Paths.get(artifact.toURI()).toFile().name}" }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClasspathHasher.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classloader;
    
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.hash.HashCode;
    
    public interface ClasspathHasher {
        /**
         * Returns a strong hash for a given classpath.
         */
        HashCode hash(ClassPath classpath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 895 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ant/useExternalAntTaskWithConfig/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    // tag::define-classpath[]
    configurations {
        pmd
    }
    
    dependencies {
        pmd group: 'pmd', name: 'pmd', version: '4.2.5'
    }
    // end::define-classpath[]
    
    // tag::use-classpath[]
    tasks.register('check') {
        doLast {
            ant.taskdef(name: 'pmd',
                        classname: 'net.sourceforge.pmd.ant.PMDTask',
                        classpath: configurations.pmd.asPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 697 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

     */
    
    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.internal.classpath.ClasspathBuilder;
    import org.gradle.internal.classpath.ClasspathEntryVisitor;
    import org.gradle.internal.classpath.ClasspathWalker;
    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    
    import java.io.File;
    import java.io.IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top