Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,292 for classPath (0.18 sec)

  1. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

                return modules;
            }
    
            @Override
            public ClassPath getAllRequiredModulesClasspath() {
                ClassPath classPath = ClassPath.EMPTY;
                for (Module module : getAllRequiredModules()) {
                    classPath = classPath.plus(module.getClasspath());
                }
                return classPath;
            }
    
            private void collectRequiredModules(Set<Module> modules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpWebProjectIntegrationTest.groovy

            project.assertHasJavaFacetBuilders()
    
            // Classpath
            def classpath = classpath
            classpath.assertHasLibs('jstl-1.2.jar', 'guava-18.0.jar', 'javax.servlet-api-3.1.0.jar', 'junit-4.13.jar', 'hamcrest-core-1.3.jar')
            classpath.lib('guava-18.0.jar').assertIsDeployedTo("/WEB-INF/lib")
            classpath.lib('jstl-1.2.jar').assertIsExcludedFromDeployment()
            classpath.lib('junit-4.13.jar').assertIsExcludedFromDeployment()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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