Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,443 for CLASSPATH (0.16 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/ClasspathFactory.java

        private final EclipseClasspath classpath;
        private final EclipseDependenciesCreator dependenciesCreator;
    
        public ClasspathFactory(EclipseClasspath classpath, IdeArtifactRegistry ideArtifactRegistry, GradleApiSourcesResolver gradleApiSourcesResolver, boolean inferModulePath) {
            this.classpath = classpath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/ClassLoaderCache.java

         *
         * @param id the ID of the classloader.
         * @param classPath the classpath to use to create the classloader.
         * @param parent the parent of the classloader.
         * @param filterSpec the filtering to use on the classpath.
         * @return the classloader.
         */
        ClassLoader get(ClassLoaderId id, ClassPath classPath, @Nullable ClassLoader parent, @Nullable FilteringClassLoader.Spec filterSpec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 02 22:15:54 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaExecSpec.java

        @Override
        public JavaExecSpec classpath(Object... paths) {
            this.classpath.from(paths);
            return this;
        }
    
        @Override
        public FileCollection getClasspath() {
            return classpath;
        }
    
        @Override
        public JavaExecSpec setClasspath(FileCollection classpath) {
            this.classpath = fileCollectionFactory.configurableFiles("classpath");
            this.classpath.setFrom(classpath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

    import org.gradle.internal.buildoption.InternalOptions
    import org.gradle.internal.classloader.ClasspathHasher
    import org.gradle.internal.classpath.CachedClasspathTransformer
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForLegacy
    import org.gradle.internal.execution.ExecutionEngine
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top