Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 723 for Compilation (0.86 sec)

  1. tensorflow/compiler/jit/device_compilation_cache.h

      struct Entry {
        mutable mutex mu;
    
        // The current compilation state for this entry.
        DeviceCompileState compile_state TF_GUARDED_BY(mu) =
            DeviceCompileState::kUncompiled;
    
        // The number of times a compilation with this signature has been requested.
        int64_t request_count TF_GUARDED_BY(mu) = 0;
    
        // Did compilation succeed?
        Status compilation_status TF_GUARDED_BY(mu);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaCompileOptions.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.scala;
    
    import org.gradle.language.scala.tasks.BaseScalaCompileOptions;
    
    /**
     * Options for Scala Compilation.
     */
    public abstract class ScalaCompileOptions extends BaseScalaCompileOptions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 839 bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/build.gradle

    subprojects {
        apply plugin: "groovy"
    
        dependencies {
            implementation localGroovy()
        }
    
        compileJava.options.fork = true
    
        // force creation of multiple daemons for Java compilation by alternating between two distinct sets of JVM args
        def count = (project.name - "project") as int
        compileJava.options.forkOptions.jvmArgs = count % 2 ? ["-dsa"] : ["-esa"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 388 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass.cc

          std::string launch_error =
              absl::StrCat("Node `", op->getName().getStringRef().str(), "` ",
                           "is a launch op which should have been removed by "
                           "outside compilation");
    
          op->emitError() << launch_error;
          LOG(ERROR) << launch_error;
          return WalkResult::interrupt();
        }
    
        if (HasXlaOutsideCompilationMarker(*op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 19:52:08 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            run("impl:${language.compileTaskName}")
    
            then:
            impl.noneRecompiled()
        }
    
        def "new jar with duplicate class appearing earlier on classpath must trigger compilation"() {
            source impl: ["class A extends org.junit.Assert {}"]
    
            file("impl/build.gradle") << """
                configurations.implementation.dependencies.clear()
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/NonGradleCause.java

     * limitations under the License.
     */
    
    package org.gradle.internal.exceptions;
    
    /**
     * An exception that is not caused by a Gradle specific problem. e.g. a problem caused by a compilation error.
     * This serves as a marker interface.
     */
    public interface NonGradleCause {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 851 bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/assembler/tasks/Assemble.java

            return assemblerArgs;
        }
    
        public void setAssemblerArgs(List<String> assemblerArgs) {
            this.assemblerArgs = assemblerArgs;
        }
    
        /**
         * The tool chain used for compilation.
         *
         * @since 4.7
         */
        @Internal
        public Property<NativeToolChain> getToolChain() {
            return toolChain;
        }
    
        /**
         * The platform being compiled for.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    	}
    
    	ast, issues := env.Compile(expressionAccessor.GetExpression())
    	if issues != nil {
    		return resultError("compilation failed: "+issues.String(), apiservercel.ErrorTypeInvalid)
    	}
    
    	found := false
    	returnTypes := expressionAccessor.ReturnTypes()
    	for _, returnType := range returnTypes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/xla_validate_inputs.mlir

         tf_executor.fetch
      }
      func.return
    }
    
    func.func @func() attributes {tf.entry_function = {}} {
      func.return
    }
    
    // -----
    
    // expected-error @+1 {{does not support top-level compilation marker}}
    func.func @top_level_compilation_marker() attributes {_xla_compile_device_type = "CPU", tf.entry_function = {}} {
      func.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 19:29:14 UTC 2024
    - 818 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/ivy/with-dependencies.xml

            <conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top