Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,443 for CLASSPATH (0.44 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/kotlin/tasks/ParameterNamesIndex.kt

                else generateParameterNamesResource(sources.files, classpath.files, it)
            }
    
        private
        fun generateParameterNamesResource(sources: Set<File>, classpath: Set<File>, destinationFile: File) {
            val index = extractParameterNamesIndexFrom(sources, classpath)
            destinationFile.parentFile.mkdirs()
            ReproduciblePropertiesWriter.store(index, destinationFile)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

                // If we are pretending that we don't have a sourcepath, the compiler will
                // look on the classpath for sources. Since we don't want to bring in any
                // sources implicitly from the classpath, we have to ignore source files
                // found on the classpath.
                if (location.equals(StandardLocation.CLASS_PATH)) {
                    kinds.remove(JavaFileObject.Kind.SOURCE);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSourceBuilder.java

            this.buildQueue = buildQueue;
        }
    
        public ClassPath buildAndGetClassPath(GradleInternal gradle) {
            StandAloneNestedBuild buildSrcBuild = buildRegistry.getBuildSrcNestedBuild(currentBuild);
            if (buildSrcBuild == null) {
                return ClassPath.EMPTY;
            }
    
            return buildOperationRunner.call(new CallableBuildOperation<ClassPath>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/provider/ChildFirstClassLoader.kt

    import org.gradle.internal.classloader.VisitableURLClassLoader
    import org.gradle.internal.classpath.ClassPath
    
    
    /**
     * A [VisitableURLClassLoader] that tries to load classes locally before delegating to its parent.
     */
    class ChildFirstClassLoader(parent: ClassLoader, classPath: ClassPath) : VisitableURLClassLoader("child-first", parent, classPath) {
    
        override fun loadClass(name: String, resolve: Boolean): Class<*> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/testFixtures/groovy/org/gradle/tooling/internal/provider/AbstractClassGraphSpec.groovy

        /**
         * Returns a URLClassLoader with the given classpath and root. Parent defaults to system ClassLoader.
         */
        URLClassLoader urlClassLoader(ClassLoader parent = ClassLoader.systemClassLoader.parent, List<File> classpath) {
            return new URLClassLoader(classpath.collect { it.toURI().toURL() } as URL[], parent)
        }
    
        /**
         * Returns a custom ClassLoader with the given classpath and root. Parent defaults to system ClassLoader.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r25/ToolingApiEclipseModelCrossVersionSpec.groovy

            EclipseProject cProject = rootProject.children.find { it.name == 'c'}
            then:
            aProject.classpath.find { it.file.name == "someArtifact-17.0.jar" }
            bProject.classpath.find { it.file.name == "someArtifact-16.0.1.jar" }
            cProject.classpath.find { it.file.name == "someArtifact-16.0.1.jar" }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultIsolatedAntBuilderTest.groovy

        void reusesClassloaderForImplementation() {
            ClassLoader loader1 = null
            ClassLoader loader2 = null
            def classpath = [new File("no-existo.jar")]
            builder.withClasspath(classpath).execute {
                loader1 = delegate.antlibClassLoader
                owner.builder.withClasspath(classpath).execute {
                    loader2 = delegate.antlibClassLoader
                }
            }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 22 10:43:11 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpJavaProjectIntegrationTest.groovy

            project.assertHasJavaFacetBuilders()
    
            // Classpath
            def classpath = classpath
            classpath.assertHasLibs('guava-18.0.jar', 'junit-4.13.jar', 'hamcrest-core-1.3.jar')
            classpath.lib('guava-18.0.jar').assertIsExcludedFromDeployment()
            classpath.lib('junit-4.13.jar').assertIsExcludedFromDeployment()
            classpath.lib('hamcrest-core-1.3.jar').assertIsExcludedFromDeployment()
    
            // Facets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/HashingClassLoaderFactory.java

         * Creates a {@link ClassLoader} with the given parent and classpath. Use the given hash
         * code, or calculate it from the given classpath when hash code is {@code null}.
         */
        ClassLoader createChildClassLoader(String name, ClassLoader parent, ClassPath classPath, @Nullable HashCode implementationHash);
    
        /**
         * Returns the hash associated with the classloader's classpath, or {@code null} if the classloader is unknown to Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/MinimalJavadocOptions.java

        /**
         * The --module-path.
         *
         * @since 6.4
         */
        MinimalJavadocOptions modulePath(List<File> classpath);
    
        MinimalJavadocOptions classpath(List<File> classpath);
    
        MinimalJavadocOptions classpath(File... classpath);
    
        @Classpath
        List<File> getBootClasspath();
    
        void setBootClasspath(List<File> bootClasspath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top