Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 725 for Compilation (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // Whether soft placement is allowed. If true, the marked node is eligible for
    // outside compilation.
    inline constexpr llvm::StringRef kAllowSoftPlacementAttr =
        "allow_soft_placement";
    
    // Marks a node for XLA compilation. The attribute value indicates the
    // compilation device type.
    inline constexpr llvm::StringRef kCompileDeviceTypeAttr =
        "_xla_compile_device_type";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/groovy/ast-transformation-consumer/build.gradle

    }
    
    dependencies {
        implementation localGroovy()
    }
    
    // tag::groovy-compilation-avoidance[]
    configurations { astTransformation }
    dependencies {
        astTransformation(project(":ast-transformation"))
    }
    tasks.withType(GroovyCompile).configureEach {
        astTransformationClasspath.from(configurations.astTransformation)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    * The class analysis is also an output stored in the build cache, which means that if a compilation output is fetched from the build cache, then the incremental compilation analysis will be too and the next compilation will be incremental.
    
    [[sec:incremental_compilation_known_issues]]
    === Known issues
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

    import org.gradle.api.tasks.scala.ScalaForkOptions;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Options for Scala platform compilation.
     */
    public abstract class BaseScalaCompileOptions extends AbstractOptions {
    
        private static final long serialVersionUID = 0;
    
        private boolean failOnError = true;
    
        private boolean deprecation = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

                Rel(providerExecution, providerClasspath, "Uses", "for compilation")
                Rel_Neighbor(providerClasspath, providerAccessors, "Uses", "for compilation")
                Rel(providerExecution, gradleKotlinDslApi, "Uses", "for compilation")
                Rel(providerExecution, providerImports, "Queries", "for compilation")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/InstrumentationCodeGenTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation
    
    import com.google.testing.compile.Compilation
    import com.google.testing.compile.JavaFileObjects
    import org.gradle.api.JavaVersion
    import org.gradle.internal.instrumentation.processor.ConfigurationCacheInstrumentationProcessor
    import org.gradle.internal.jvm.Jvm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

    /**
     * Debug options for Java compilation. Only take effect if {@link CompileOptions#debug}
     * is set to {@code true}.
     */
    public class DebugOptions extends AbstractOptions {
        private static final long serialVersionUID = 0;
    
        private String debugLevel;
    
        /**
         * Get a comma-separated list of debug information to be generated during compilation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_cluster_signature.h

    // to a kernel. Key that uniquely identifies a compilation output.
    struct DeviceCompilationClusterSignature {
      // Name of the cluster, built from the function name and it's attributes.
      string name;
    
      // List of args (either as a TensorTypeAndShape or as a Tensor value)
      // for compile-time constant arguments to the compilation, ordered by
      // argument number. Tensors must be in host memory.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		}),
    	}
    
    	legacyregistry.MustRegister(m.compilationTime)
    	legacyregistry.MustRegister(m.evaluationTime)
    
    	return m
    }
    
    // ObserveCompilation records a CEL compilation with the time the compilation took.
    func (m *CelMetrics) ObserveCompilation(elapsed time.Duration) {
    	seconds := elapsed.Seconds()
    	m.compilationTime.Observe(seconds)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 09 23:50:48 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/classpath/DefaultClassSetAnalyzer.java

            } catch (Exception e) {
                accumulator.fullRebuildNeeded(classSet + " could not be analyzed for incremental compilation. See the debug log for more details");
                if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("Could not analyze " + classSet + " for incremental compilation", e);
                }
            }
    
            return accumulator.getAnalysis();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top