Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,361 for CLASSPATH (0.14 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/DefaultClassLoaderFactory.java

            if (needJaxpImpl()) {
                classPath = addToClassPath(classPath, getClasspathForResource(getSystemClassLoader(), "META-INF/services/javax.xml.parsers.SAXParserFactory"));
                classPath = addToClassPath(classPath, getClasspathForClass("org.w3c.dom.ElementTraversal"));
            }
    
            return doCreateClassLoader(name, getIsolatedSystemClassLoader(), classPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.3K 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/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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

        }
    
        class ClassDetails {
            final String path
            final String className
            final String classpath
    
            ClassDetails(String path, String className, String classpath) {
                this.path = path
                this.className = className
                this.classpath = classpath
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. 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)
Back to top