Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,457 for classPath (0.2 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

     * limitations under the License.
     */
    package org.gradle.api.internal
    
    import org.gradle.api.internal.classpath.Module
    import org.gradle.api.internal.classpath.ModuleRegistry
    import org.gradle.api.internal.classpath.PluginModuleRegistry
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import spock.lang.Specification
    
    class DependencyClassPathProviderTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinInitScriptModelCrossVersionSpec.groovy

        def "initscript classpath does not include buildSrc"() {
    
            given:
            withBuildSrc()
            withDefaultSettings()
    
            and:
            def initScript = withFile("my.init.gradle.kts")
    
            when:
            def classPath = canonicalClassPathFor(initScript)
    
            then:
            assertContainsGradleKotlinDslJars(classPath)
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScope.kt

        /**
         * The script classpath configuration.
         */
        val NamedDomainObjectContainer<Configuration>.classpath: NamedDomainObjectProvider<Configuration>
            get() = named(CLASSPATH_CONFIGURATION)
    
        /**
         * Adds a dependency to the script classpath.
         *
         * @param dependencyNotation notation for the dependency to be added.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

            if (classPath instanceof TransformedClassPath) {
                return plusWithTransforms((TransformedClassPath) classPath);
            }
            return new TransformedClassPath(originalClassPath.plus(classPath), transforms);
        }
    
        /**
         * {@inheritDoc}
         * <p>
         * The predicate is applied to the original classpath entries. The returned classpath keeps corresponding transformations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseCustomBuildSourceOutputTest.groovy

            classpath.sourceDirs[3].output == 'custom-output/test'
        }
    
        @ToBeFixedForConfigurationCache
        def "can configure src output with default value"() {
            when:
            run 'eclipse'
    
            then:
            classpath.sourceDirs.size() == 4
            classpath.sourceDirs[0].output == 'bin/main'
            classpath.sourceDirs[1].output == 'bin/main'
            classpath.sourceDirs[2].output == 'bin/test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            final String name;
            final List<URL> classpath;
    
            public String getName() {
                return name;
            }
    
            public Spec(String name, List<URL> classpath) {
                this.name = name;
                this.classpath = classpath;
            }
    
            public List<URL> getClasspath() {
                return classpath;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

        def "Source folder defines one classpath attribute"() {
            settingsFile << 'rootProject.name = "root"'
            buildFile <<
                """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       file {
                           whenMerged { classpath ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/FinalizerThread.java

        private final AtomicBoolean stopped = new AtomicBoolean();
    
        // Protects the following fields
        private final Lock lock;
        private final Map<ClassPath, Cleanup> cleanups;
        private final Map<ClassPath, CacheEntry> cacheEntries;
    
        public FinalizerThread(Map<ClassPath, CacheEntry> cacheEntries, Lock lock) {
            this.setName("Classloader cache reference queue poller");
            this.setDaemon(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

     *       }
     *
     *       //closure executed after .classpath content is loaded from existing file
     *       //but before gradle build information is merged
     *       beforeMerged { classpath -&gt;
     *         //you can tinker with the {@link Classpath} here
     *       }
     *
     *       //closure executed after .classpath content is loaded from existing file
     *       //and after gradle build information is merged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

            private final EclipseClasspath classpath;
            private final Set<File> files = new LinkedHashSet<>();
    
            private WtpClasspathAttributeDependencyVisitor(EclipseClasspath classpath) {
                this.classpath = classpath;
            }
    
            @Override
            public boolean isOffline() {
                return classpath.isProjectDependenciesOnly();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top