Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 745 for Compilation (0.18 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * should be kept after compilation has completed. Useful for joint compilation debugging purposes.
         * Defaults to {@code false}.
         */
        @Input
        public boolean isKeepStubs() {
            return keepStubs;
        }
    
        /**
         * Sets whether Java stubs for Groovy classes generated during Java/Groovy joint compilation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                case "ERROR":
                    assert problem.definition.id.displayName == "Java compilation error": "Expected label 'Java compilation error', but was ${problem.definition.id.displayName}"
                    break
                case "WARNING":
                    assert problem.definition.id.displayName == "Java compilation warning": "Expected label 'Java compilation warning', but was ${problem.definition.id.displayName}"
                    break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileProblemsIntegrationTest.groovy

                }
            """
        }
    
        def "when doing a join compilation java problems are formatted the same as a standalone compication"() {
            given:
            file("src/main/groovy/JavaThing.java") << """\
                public class JavaThing {
                    public void badMethod() {
                        // The following line will cause a compilation error
                        return "Hello, World!"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 16:25:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            ]
        }
    
        def "nothing is stashed on full recompilation but it's stashed on incremental compilation"() {
            given:
            source("class A {}", "class B {}")
            def compileTransactionDir = file("build/tmp/${language.compileTaskName}/compileTransaction")
    
            when: "First compilation is always full compilation"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "B")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/GradleCoreProblemGroup.java

            private final ProblemGroup java = new DefaultProblemGroup("java", "Java compilation", this);
            private final ProblemGroup groovy = new DefaultProblemGroup("groovy", "Groovy compilation", this);
            public ProblemGroup groovyDsl = new DefaultProblemGroup("groovy-dsl", "Groovy DSL script compilation", this);
    
            private DefaultCompilationProblemGroup(String id, String displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

    import java.io.File
    
    /**
     * In-memory compilation result returned from [KaCompilerFacility].
     *
     * Compilation fails if there are critical errors reported either on the frontend or on the backend side.
     * Keep in mind that [KaCompilationResult] is a part of Analysis API, so it should only be used inside an analysis block.
     */
    public sealed class KaCompilationResult {
        /**
         * Successful compilation result.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    include::sample[dir="snippets/groovy/compilationAvoidance/groovy/ast-transformation-consumer", files="build.gradle[tags=groovy-compilation-avoidance]"]
    ====
    
    [[sec:incremental_groovy_compilation]]
    == Incremental Groovy compilation
    
    Since 5.6, Gradle introduces an experimental incremental Groovy compiler. To enable incremental compilation for Groovy, you need:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeCliIncrementalCompilationIntegrationTest.groovy

         * but for the CLI compiler where incremental compilation after failure is not supported.
         */
        def "detects deletion of a source base class that leads to compilation failure"() {
            def a = source "class A {}"
            source "class B extends A {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    // Marks uncompilable ops that are in `tf_dialect` for outside compilation.
    LogicalResult MarkUncompilableOps(
        const Dialect* tf_dialect, Block* block,
        llvm::DenseSet<OperationName>& supported_ops) {
      // Automatically marked ops for outside compilation have
      // `_xla_outside_compilation` attribute value of "auto" plus
      // an increasing counter.  Manually marked ops for outside compilation only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

                        return new File[0];
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            assertThat(compilation).failed()
            assertThat(compilation).hadErrorContaining("Intercepting inherited methods is supported only for Gradle types for now, but type was: java/io/File")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top