Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 284 for Compilation (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                    public abstract Property<Integer> getMaxErrors();
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation).generatedSourceFile("${GENERATED_CLASSES_PACKAGE_NAME}.Task_Adapter")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                    return "java-compilation-error";
                case WARNING:
                case MANDATORY_WARNING:
                    return "java-compilation-warning";
                case NOTE:
                    return "java-compilation-note";
                case OTHER:
                    return "java-compilation-problem";
                default:
                    return "unknown-java-compilation-problem";
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_util.cc

            // Case 1a: outside compilation to outside compilation control edge.
            edges_to_remove.push_back(e);
    
            TF_RETURN_IF_ERROR(AppendToListAttr<string>(
                e->dst(), kXlaControlDependenciesWithinXlaClusterAttrName,
                e->src()->name()));
          }
        } else if (src_outside_compilation && !dst_outside_compilation) {
          // Case 1b: outside compilation to its XLA computation control edge.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/flags.h

        std::vector<tensorflow::Flag>* flag_list);
    
    // Disables XLA compilation, forces it to return an error message instead. Can
    // be used by a server to ensure that JIT compilation is opt-in.
    void DisableXlaCompilation();
    
    // Enables XLA compilation. Can be used with `DisableXlaCompilation` to
    // enable/disable JIT compilation at different stages.
    void EnableXlaCompilation();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                    result.assertNotOutput("Stored cache entry for Kotlin DSL script compilation")
                    result.assertOutputContains("Caching of Kotlin script compilation disabled by property")
                } else {
                    result.assertOutputContains("Stored cache entry for Kotlin DSL script compilation")
                    result.assertNotOutput("Caching of Kotlin script compilation disabled by property")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/flags.cc

                "device"
                "forces compilation by XLA. Deprecated."),
    
           Flag("tf_xla_always_defer_compilation",
                &ops_flags->tf_xla_always_defer_compilation, ""),
           Flag("tf_xla_async_compilation", &ops_flags->tf_xla_async_compilation,
                "When lazy compilation is enabled, asynchronous compilation starts "
                "the cluster compilation in the background, and the fallback path "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top