Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 362 for CLASSPATH (0.09 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

     * stored in the given [outputDir].
     */
    internal
    class ResidualProgramCompiler(
        private val outputDir: File,
        private val compilerOptions: KotlinCompilerOptions,
        private val classPath: ClassPath = ClassPath.EMPTY,
        private val originalSourceHash: HashCode,
        private val programKind: ProgramKind,
        private val programTarget: ProgramTarget,
        private val implicitImports: List<String> = emptyList(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            ConfigurableFileCollection classpath = getProject().getObjects().fileCollection();
            if (JavaVersion.current().isJava9Compatible()) {
                classpath.from(resolveJaxb());
            }
            if (GradleVersion.current().compareTo(GradleVersion.version("6.0")) >= 0) {
                classpath.from(resolveGuava());
            }
            additionalJapicmpClasspath = classpath;
        }
    
        @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

         *
         * @param classpath the class path to search
         * @param appendix the appendix to search for
         * @return a Scala Jar file with the specified appendix
         */
        @Nullable
        public File findScalaJar(Iterable<File> classpath, String appendix) {
            return ScalaRuntimeHelper.findScalaJar(classpath, appendix);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                    doLast {
                        assert test.testFramework instanceof ${JUnitPlatformTestFramework.canonicalName}
                        assert classpath.size() == 8
                        assert classpath.any { it.name =~ /junit-platform-launcher-.*.jar/ }
                        assert classpath.any { it.name == "junit-jupiter-${JUnitJupiterTestToolchain.DEFAULT_VERSION}.jar" }
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

            target: Project,
            script: String,
            classPath: ClassPath = testRuntimeClassPath,
            buildAccessorsFor: (TypedProjectSchema, ClassPath, File, File) -> Unit = ::buildAccessorsFor
        ) {
    
            val srcDir = newFolder("src")
            val binDir = newFolder("bin")
    
            buildAccessorsFor(schema, classPath, srcDir, binDir)
    
            eval(
                script = script,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

        }
    
        /**
         * Returns the classpath used to locate classes referenced by the documented sources.
         *
         * @return The classpath used to locate classes referenced by the documented sources
         */
        @Classpath
        public FileCollection getClasspath() {
            return classpath;
        }
    
        /**
         * Sets the classpath used to locate classes referenced by the documented sources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                        return expectedWorkingDir.absolutePath
                    }
    
                    @Classpath
                    FileCollection classPath
    
                    @OutputFile
                    File outputFile
    
                    @Override
                    Iterable<String> asArguments() {
                        ['-cp', classPath.asPath, 'org.gradle.TestMain', expectedWorkingDirPath, outputFile.absolutePath]
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

                    isolationMode = $isolationMode
                    def classpath = sourceSets.main.output.classesDirs
                    def projectDir = project.projectDir
                    def testFile = project.file("\$buildDir/\$name")
                    additionalParameters = {
                        it.classpath.from(classpath)
                        it.setProjectDir(projectDir)
                        it.setTestFile(testFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/DefaultIsolatedAntBuilder.java

            return classLoaderCache;
        }
    
        @Override
        public IsolatedAntBuilder withClasspath(Iterable<File> classpath) {
            if (LOG.isDebugEnabled()) {
                LOG.debug("Forking a new isolated ant builder for classpath : {}", classpath);
            }
            return new DefaultIsolatedAntBuilder(this, classpath);
        }
    
        @Override
        public void execute(Closure antClosure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 02 18:37:54 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                dependencies {
                    implementation project(':b')
                }
    
                task checkClasspath {
                    def classpath = compileJava.classpath
                    doLast {
                        def compileClasspath = classpath.files*.name
                        assert !compileClasspath.contains('b.jar')
                        assert compileClasspath.contains('other-1.0.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top