Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 977 for CLASSPATH (0.21 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

               eclipse {
                   classpath {
                       file {
                           whenMerged { classpath ->
                               classpath.entries.removeAll { it.kind == 'output' }
                               classpath.entries.add(new org.gradle.plugins.ide.eclipse.model.Output('$firstPath'))
                               classpath.entries.add(new org.gradle.plugins.ide.eclipse.model.Output('$secondPath'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptTemplateModelBuilder.kt

                        .fold(ClassPath.EMPTY) { classPath, module -> classPath + module.classpath }
                        .asFiles
                )
            }
    }
    
    
    internal
    data class StandardKotlinBuildScriptTemplateModel(
        private val classPath: List<File>
    ) : KotlinBuildScriptTemplateModel, Serializable {
    
        override fun getClassPath() = classPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

    package org.gradle.kotlin.dsl.resolver
    
    import com.nhaarman.mockito_kotlin.doReturn
    import com.nhaarman.mockito_kotlin.mock
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.kotlin.dsl.fixtures.FolderBasedTest
    import org.gradle.kotlin.dsl.resolver.SourcePathProvider.sourcePathFor
    import org.hamcrest.CoreMatchers.anyOf
    import org.hamcrest.CoreMatchers.hasItems
    import org.hamcrest.CoreMatchers.not
    import org.hamcrest.MatcherAssert.assertThat
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

     */
    package org.gradle.api.internal.classpath;
    
    import org.gradle.internal.classpath.ClassPath;
    
    import java.util.Set;
    
    /**
     * Meta-data about a dynamically loadable module.
     */
    public interface Module {
        /**
         * Returns the classpath for the module implementation. This is the classpath of the module itself. Does not include any dependencies.
         */
        ClassPath getImplementationClasspath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

            assertThat(
                classPath.collect { it.name } as List<String>,
                hasItems(fileNameSetOf(files))
            )
        }
    
        protected static void assertExcludes(List<File> classPath, File... files) {
            assertThat(
                classPath.collect { it.name } as List<String>,
                not(hasItems(fileNameSetOf(files)))
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

                    if (classpath instanceof Buildable) {
                        context.add(classpath);
                    }
                }
            };
        }
    
        private static List<File> collectJarsFromClasspath(Iterable<File> classpath, Set<String> jarNames) {
            return stream(classpath.spliterator(), false)
                .filter(file -> jarNames.contains(file.getName()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/internal/deployment/RunApplication.java

        private Collection<String> arguments;
        private FileCollection classpath;
        private DeploymentRegistry.ChangeBehavior changeBehavior = DeploymentRegistry.ChangeBehavior.RESTART;
    
        @Classpath
        public FileCollection getClasspath() {
            return classpath;
        }
    
        public void setClasspath(FileCollection classpath) {
            this.classpath = classpath;
        }
    
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

    class EclipseClasspathFixture {
        final TestFile userHomeDir
        final Node classpath
    
        private EclipseClasspathFixture(TestFile userHomeDir, Node classpath) {
            this.userHomeDir = userHomeDir
            this.classpath = classpath
        }
    
        static EclipseClasspathFixture create(TestFile projectDir, TestFile userHomeDir) {
            TestFile file = projectDir.file('.classpath')
            file.assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseModelTest.groovy

            then:
            model.classpath.downloadJavadoc
    
            when: "configure classpath file"
            model.classpath.file({ fcm -> fcm.xmlTransformer } as Action<XmlFileContentMerger>)
    
            then:
            1 * xmlMerger.getXmlTransformer()
    
            when: "configure classpath XML"
            model.classpath.file.withXml(xmlAction)
    
            then:
            1 * xmlTransformer.addAction(xmlAction)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       containers 'containerPath'
                       file {
                           whenMerged { classpath ->
                               classpath.entries.find { it.path == 'containerPath' }.entryAttributes.customKey = 'customValue'
                           }
                       }
                   }
               }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top