Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,443 for CLASSPATH (0.15 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ClassPathSensitiveTask.kt

    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.work.DisableCachingByDefault
    
    
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    abstract class ClassPathSensitiveTask : DefaultTask(), ClassPathAware {
    
        @get:Internal
        protected
        val classPath: ClassPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinLibSources.kt

    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    
    import org.gradle.jvm.JvmLibrary
    
    import org.gradle.kotlin.dsl.embeddedKotlinVersion
    import org.gradle.kotlin.dsl.get
    
    import org.gradle.language.base.artifact.SourcesArtifact
    
    
    internal
    fun sourcePathFor(scriptHandlers: List<ScriptHandler>): ClassPath {
        var sourcePath = ClassPath.EMPTY
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 00:40:48 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    The whole transformation process normally happens on the first use of a build or when a plugin jar is added to the build script classpath.
    We transform the jar and cache transformed jars for future use.
    
    We transform plugins classpath, TestKit classpath and buildscript classes separately. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/BuildEnvironmentReportTaskIntegrationTest.groovy

            then:
            output.contains """
    classpath
    \\--- org:toplevel2:1.0
         +--- org:leaf3:1.0
         \\--- org:leaf4:1.0
    """
            when:
            run(":client:buildEnvironment")
    
            then:
            output.contains """
    classpath
    No dependencies
    """
    
            when:
            run(":buildEnvironment")
    
            then:
            output.contains """
    classpath
    \\--- org:toplevel1:1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

        /**
         * Returns the classpath used to compile this source.
         *
         * @return The classpath. Never returns null.
         */
        FileCollection getCompileClasspath();
    
        /**
         * Sets the classpath used to compile this source.
         *
         * @param classpath The classpath. Should not be null.
         */
        void setCompileClasspath(FileCollection classpath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/VisitableURLClassLoaderTest.groovy

                assert spec.name == "test"
                assert spec.classpath == classPath
            }
            1 * visitor.visitClassPath(classPath)
            1 * visitor.visitParent(parent)
            0 * visitor._
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClasspathHasher.java

            this.fingerprinter = fingerprinter;
            this.fileCollectionFactory = fileCollectionFactory;
        }
    
        @Override
        public HashCode hash(ClassPath classpath) {
            CurrentFileCollectionFingerprint fingerprint = fingerprinter.fingerprint(fileCollectionFactory.fixed(classpath.getAsFiles()));
            return fingerprint.getHash();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/CacheEntry.java

    package org.gradle.api.internal.project.antbuilder;
    
    import org.gradle.internal.classpath.ClassPath;
    
    import java.lang.ref.SoftReference;
    
    class CacheEntry extends SoftReference<CachedClassLoader> {
    
        private final ClassPath key;
    
        CacheEntry(ClassPath key, CachedClassLoader cached) {
            super(cached);
            this.key = key;
        }
    
        public ClassPath getKey() {
            return key;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1022 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

            return inferClasspath(inferModulePath, fileCollectionFactory.fixed(classpath));
        }
    
        public FileCollection inferClasspath(boolean inferModulePath, FileCollection classpath) {
            if (classpath == null) {
                return FileCollectionFactory.empty();
            }
            if (!inferModulePath) {
                return classpath;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithProjectDependenciesIntegrationTest.groovy

                    id 'java-library'
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies in main source set dependency configurations are not marked with test classpath attribute"() {
            given:
            file('a/build.gradle') << """
                dependencies {
                    implementation project(':b')
                }
            """
    
            when:
            run 'eclipse'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top