Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,457 for classPath (0.19 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        fun projectAccessorsClassPath(scriptTarget: ExtensionAware, classPath: ClassPath): AccessorsClassPath =
            scriptTarget.getOrCreateProperty("gradleKotlinDsl.accessorsClassPath") {
                buildAccessorsClassPathFor(scriptTarget, classPath)
                    ?: AccessorsClassPath.empty
            }
    
    
        private
        fun buildAccessorsClassPathFor(scriptTarget: Any, classPath: ClassPath): AccessorsClassPath? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/AbstractEclipseTestSourcesIntegrationTest.groovy

            doesNotHaveTestAttribute(classpath.sourceDir(path))
        }
    
        private static void jarHasTestAttribute(EclipseClasspathFixture classpath, String jarName) {
            hasTestAttribute(classpath.lib(jarName))
        }
    
        private static void jarDoesNotHaveTestAttribute(EclipseClasspathFixture classpath, String jarName) {
            doesNotHaveTestAttribute(classpath.lib(jarName))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/HashedClasspath.java

    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.hash.HashCode;
    
    import java.io.Serializable;
    
    /**
     * Immutable classpath with it's precomputed hash.
     */
    public class HashedClasspath implements Serializable {
        private final ClassPath classpath;
        private final HashCode hash;
    
        public HashedClasspath(ClassPath classpath, HashCode hash) {
            this.classpath = classpath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            classpath.configure(newEntries)
    
            then:
            def entriesToBeKept = customEntries - allDependencies - jreContainer - outputLocation - srcFolder
            classpath.entries == entriesToBeKept + newEntries
        }
    
        def "load defaults"() {
            when:
            classpath.loadDefaults()
    
            then:
            classpath.entries == []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/CachedClasspathTransformer.java

            BuildLogic, None
        }
    
        /**
         * Transforms a classpath to a classpath with the given transformations applied.
         */
        ClassPath transform(ClassPath classPath, StandardTransform transform);
    
        /**
         * Transforms a classpath to a classpath with the given transformations applied.
         */
        ClassPath transform(ClassPath classPath, ClassTransform additional);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/DependencyClassPathProvider.java

            ClassPath classpath = ClassPath.EMPTY;
            for (String moduleName : MODULES) {
                classpath = classpath.plus(moduleRegistry.getModule(moduleName).getAllRequiredModulesClasspath());
            }
            for (Module pluginModule : pluginModuleRegistry.getApiModules()) {
                classpath = classpath.plus(pluginModule.getClasspath());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApiEclipseModelWtpClasspathAttributesCrossVersionSpec.groovy

            when:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
            Collection<EclipseExternalDependency> classpath = eclipseProject.getClasspath()
    
            then:
            classpath.size() == 2
            entryNotDeployed(classpath[0])
            entryNotDeployed(classpath[1])
        }
    
        def "Root wtp dependencies and their transitives are deployed to '/'"() {
            given:
            buildFile <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinSettingsScriptModelCrossVersionSpec.groovy

                    dependencies {
                        classpath(files("${normalizedPathOf(projectDependency)}"))
                    }
                }
            """
    
            when:
            def classPath = canonicalClassPathFor(projectDir, settings)
    
            then:
            assertAppropriatelyContainsBuildSrc(classPath)
            assertContainsGradleKotlinDslJars(classPath)
            assertIncludes(classPath, settingsDependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingModelsWithDependencyResolutionIntegrationTest.groovy

            then:
            model.size() == 4
            model[0].message == "project :a classpath = 2"
            model[1].message == "project :b classpath = 1"
            model[2].message == "project :c classpath = 0"
            model[3].message == "project :d classpath = 0"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluator.kt

            override fun compilationClassPathOf(classLoaderScope: ClassLoaderScope): ClassPath =
                scriptCompilationClassPath
    
            override fun stage1BlocksAccessorsFor(scriptHost: KotlinScriptHost<*>): ClassPath =
                ClassPath.EMPTY
    
            override fun accessorsClassPathFor(scriptHost: KotlinScriptHost<*>): ClassPath =
                ClassPath.EMPTY
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top