Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 782 for compilation$ (0.2 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/environment/JreJavaHomeJavaIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    class JreJavaHomeJavaIntegrationTest extends AbstractIntegrationSpec {
    
        @Requires(IntegTestPreconditions.BestJreAvailable)
        def "java compilation works in forking mode = #forkMode when JAVA_HOME is set to JRE"() {
            given:
            def jreJavaHome = AvailableJavaHomes.bestJre
            writeJavaTestSource("src/main/java");
            file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/SelectiveCompiler.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.util.Collection;
    import java.util.Objects;
    
    /**
     * A compiler that selects classes for compilation. It also handles restore of output state in case of a compile failure.
     */
    class SelectiveCompiler<T extends JavaCompileSpec> implements org.gradle.language.base.internal.compile.Compiler<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/model/BinarySourceTransformations.java

     * - Source sets should be able to depend on other source sets, resulting in the correct task dependencies and inputs
     * - Joint-compilation should only be used in the case where sources are co-dependent.
     *
     * Currently we use joint-compilation when:
     * - We have a language transform that supports joint-compilation
     * - Binary is flagged with {@link BinarySpecInternal#hasCodependentSources()}.
     */
    public class BinarySourceTransformations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/crossCompilation/kotlin/settings.gradle.kts

    rootProject.name = "cross-compilation"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/groovy/crossCompilation/groovy/settings.gradle

    rootProject.name = 'cross-compilation'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/crossCompilation/groovy/settings.gradle

    rootProject.name = 'cross-compilation'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/performance/resolveAtBuildTime/tests/copyFiles.out

    >> Compilation deps: [commons-lang3-3.11.jar]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ForceScalaCompileIntegrationTest.groovy

        def setup() {
            executer.withRepositoryMirrors()
        }
    
        @Issue("gradle/gradle#13224")
        def 'disabling incremental compilation does not produce an analysis file'() {
            given:
            buildFile << """
    plugins {
        id 'scala'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    image::images/C4_1_Context.svg[]
    
    ## Level 2: Container diagram
    
    When used for the compilation of scripts of a Gradle build, the Kotlin DSL Provider compiles scripts using an embedded Kotlin compiler.
    
    When used for the compilation of Kotlin source sets, e.g. in `buildSrc`, the `kotlin-dsl` plugin provide Kotlin DSL features to source sets and compiles Kotlin code using the Kotlin Gradle Plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcCompilationClasspathIntegrationTest.groovy

            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_16)) {
                return "1.6"
            }
            return MIN_SUPPORTED_COMPILATION_CLASSPATH_VERSION
        }
    
        def "compilation classpath can be specified for a CodeNarc task"() {
            given:
            buildFileWithCodeNarcAndCompilationClasspath(supportedCompilationClasspathVersion())
            cloneWithoutCloneableRuleEnabled()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top