Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,443 for CLASSPATH (0.45 sec)

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

    // tag::module-before-merged[]
    // tag::module-when-merged[]
    eclipse.classpath.file {
    // end::module-when-merged[]
        beforeMerged { classpath ->
            classpath.entries.removeAll { entry -> entry.kind == 'lib' || entry.kind == 'var' }
        }
    // end::module-before-merged[]
    // tag::module-when-merged[]
        whenMerged { classpath ->
            classpath.entries.findAll { entry -> entry.kind == 'lib' }*.exported = false
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/DummyClassLoaderCache.java

            return new URLClassLoader(classPath.getAsURLArray(), parent);
        }
    
        @Override
        public ClassLoader get(ClassLoaderId id, ClassPath classPath, @Nullable ClassLoader parent, @Nullable FilteringClassLoader.Spec filterSpec) {
            return get(id, classPath, parent, filterSpec, null);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 20 04:40:16 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

            when:
            def classPath = canonicalClassPath()
    
            then:
            assertThat(
                classPath.collect { it.name } as List<String>,
                hasItems("classes.jar")
            )
    
            assertContainsBuildSrc(classPath)
    
            assertContainsGradleKotlinDslJars(classPath)
        }
    
        def "can fetch buildscript classpath for sub-project script when parent has errors"() {
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ExternalToolingApiDistribution.groovy

    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.util.GradleVersion
    
    class ExternalToolingApiDistribution implements ToolingApiDistribution {
        private final GradleVersion version
        private final Collection<File> classpath
    
        ExternalToolingApiDistribution(String version, Collection<File> classpath) {
            this.version = GradleVersion.version(version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipsePluginTest.groovy

            def classpath = project.eclipse.classpath
            def classpathTask = project.tasks.eclipseClasspath
    
            assert classpathTask instanceof GenerateEclipseClasspath
            assert classpathTask.classpath == classpath
            assert classpathTask.outputFile == project.file('.classpath')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/DefaultClassPathRegistryTest.groovy

            e.message == 'unknown classpath \'name\' requested.'
        }
    
        def "delegates to providers to find classpath"() {
            def classpath = Mock(ClassPath)
    
            given:
            provider1.findClassPath(_) >> null
            provider2.findClassPath("name") >> classpath
    
            expect:
            registry.getClassPath("name") == classpath
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top