Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 782 for compilation$ (0.22 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/IncrementalCompileOptions.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.LocalState;
    
    import javax.inject.Inject;
    
    /**
     * Options for incremental compilation of Scala code. Only used for compilation with Zinc.
     *
     * This is not sent to the compiler daemon as options.
     */
    public abstract class IncrementalCompileOptions {
        private final RegularFileProperty analysisFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationFatalException.java

    /**
     * Indicates a fatal error during compilation. Gradle will not try to recover output files from a previous compilation.
     */
    public class CompilationFatalException extends RuntimeException implements CompilationFailedIndicator {
    
        public CompilationFatalException(Throwable cause) {
            super("Unrecoverable compilation error: " + cause.getMessage(), cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/kotlin/ast-transformation-consumer/build.gradle.kts

    }
    
    dependencies {
        implementation(localGroovy())
    }
    
    // tag::groovy-compilation-avoidance[]
    val astTransformation by configurations.creating
    dependencies {
        astTransformation(project(":ast-transformation"))
    }
    tasks.withType<GroovyCompile>().configureEach {
        astTransformationClasspath.from(astTransformation)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 385 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/groovy/crossCompilation/groovy/build.gradle

    }
    
    dependencies {
        implementation 'org.codehaus.groovy:groovy-all:2.4.15'
        testImplementation 'junit:junit:4.13'
    }
    
    // tag::groovy-cross-compilation[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(7)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 355 bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_compile_util.h

    #include <memory>
    #include <string>
    
    #include "tensorflow/compiler/tf2xla/xla_argument.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    // The number of compiler threads to use for asynchronous device compilation.
    inline constexpr int64_t kNumAsyncDeviceCompilerThreads = 10;
    
    enum class DeviceCompileMode {
      kLazy,
      kStrict,
      kAsync,
    };
    
    enum class DeviceCompileState {
      kUncompiled,
      kCompiling,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.4K 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. tensorflow/compiler/jit/device_compilation_profiler.h

      // cluster and also determines whether the cluster has gone megamorphic (and
      // sets the megamorphic bit accordingly).
      void RegisterExecution(const NameAttrList& function);
    
      // Registers a cluster compilation. Increments the compilation count and
      // accumulates the compile time for the given cluster. Also broadcasts an
      // XlaJitCompilationActivity.
      virtual Status RegisterCompilation(const NameAttrList& function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. 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)
Back to top