Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 632 for classPath (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       containers 'containerPath'
                       file {
                           whenMerged { classpath ->
                               classpath.entries.find { it.path == 'containerPath' }.entryAttributes.customKey = 'customValue'
                           }
                       }
                   }
               }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java

            res = transform.transform(graph, ArtifactScopeEnum.compile, false);
    
            assertNotNull(res, "null classpath container after compile transform");
            assertNotNull(res.getClasspath(), "null classpath after compile transform");
            assertEquals(3, res.getClasspath().size(), "compile classpath should have 3 entries");
        }
    
        // ------------------------------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

        }
    
        String wrapClassDirs(String classpath) {
            if (language == CompiledLanguage.GROOVY) {
                if (useJar) {
                    return "api.jar, ${classpath}, main"
                } else {
                    // api/build/classes/java/main and api/build/classes/groovy/main
                    // impl/build/classes/java/main
                    return "main, main, ${classpath}, main"
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

            });
        }
    
        private static File findFile(String prefix, ClassPath classpath) {
            for (File f : classpath.getAsFiles()) {
                if (f.getName().startsWith(prefix)) {
                    return f;
                }
            }
            throw new IllegalStateException(String.format("Cannot find any files starting with %s in %s", prefix, classpath.getAsFiles()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptHandler.java

        /**
         * If set to {@code true}, the buildscript's {@code classpath} configuration will not be reset after the
         * classpath has been assembled. Defaults to {@code false}.
         */
        public static final String DISABLE_RESET_CONFIGURATION_SYSTEM_PROPERTY = "org.gradle.incubating.reset-buildscript-classpath.disabled";
    
        private static final Logger LOGGER = Logging.getLogger(DefaultScriptHandler.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 17:56:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

        }
    
        def "Classpath container defined in beforeMerged"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       file {
                          beforeMerged { classpath ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                    }
                    dependencies {
                        classpath "${first[0]}"
                        classpath "${second[0]}"
                    }
                }
    
                Thread.currentThread().getContextClassLoader().getURLs()
                    .eachWithIndex { artifact, idx -> println "classpath[\$idx]==\${Paths.get(artifact.toURI()).toFile().name}" }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top