Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,443 for CLASSPATH (0.14 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/jvm/scala/src/test/groovy/org/gradle/api/tasks/ScalaRuntimeTest.groovy

            }
            when:
            def classpath = project.scalaRuntime.inferScalaClasspath([new File("other.jar"), new File("scala-library-2.10.1.jar")])
            then:
            assertHasCorrectDependencies(classpath, useZincVersion)
        }
    
        private void assertHasCorrectDependencies(classpath, zincVersion) {
            assert classpath instanceof LazilyInitializedFileCollection
            assert classpath.sourceCollections.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

            // TODO:isolated support precompiled scripts
            IntermediateScriptModel(it, ClassPath.EMPTY, ClassPath.EMPTY, emptyList())
        }
    }
    
    
    private
    fun buildOutputModel(scriptFile: File, classPath: ClassPath, sourcePath: ClassPath, implicitImports: List<String>, exceptions: List<Exception>) =
        StandardKotlinDslScriptModel(
            classPath.asFiles,
            sourcePath.asFiles,
            implicitImports,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

                programId: ProgramId,
                compilationClassPath: ClassPath,
                accessorsClassPath: ClassPath,
                initializer: (File) -> Unit
            ): File
    
            fun startCompilerOperation(
                description: String
            ): AutoCloseable
    
            fun compilationClassPathOf(
                classLoaderScope: ClassLoaderScope
            ): ClassPath
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top