Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 792 for mean_t (0.16 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackTraceClassifier.java

     */
    
    package org.gradle.internal.problems.failure;
    
    import javax.annotation.Nullable;
    
    /**
     * Classifies stack frames by their {@link StackTraceRelevance relevance}.
     * <p>
     * Classifiers are meant to be heuristic, determining the relevance on the best-effort basis.
     */
    public interface StackTraceClassifier {
    
        StackTraceClassifier USER_CODE = new StackTraceClassifier() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:52:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/compilation_timer.h

    #define TENSORFLOW_COMPILER_MLIR_TF2XLA_INTERNAL_COMPILATION_TIMER_H_
    
    #include <chrono>  // NOLINT(build/c++11)
    
    #include "tensorflow/core/platform/profile_utils/cpu_utils.h"
    
    // Time the execution of kernels (in CPU cycles). Meant to be used as RAII.
    struct CompilationTimer {
      uint64_t start_cycles =
          tensorflow::profile_utils::CpuUtils::GetCurrentClockCycle();
    
      uint64_t ElapsedCycles() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 04:52:21 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/AbstractWritableConfigurationReportRenderer.java

    import java.io.Writer;
    
    /**
     * An {@code abstract} {@link AbstractConfigurationReportRenderer} extension that can be used to render a {@link ConfigurationReportModel}
     * to a {@link Writer}.
     *
     * This is meant to be the base class for any such renderer which does <strong>NOT</strong> output directly to the console.
     */
    public abstract class AbstractWritableConfigurationReportRenderer extends AbstractConfigurationReportRenderer<Writer> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/accesscontrol/AllowUsingApiForExternalUse.java

    import java.lang.annotation.Target;
    
    /**
     * Suppresses the checks done for {@link ForExternalUse}, effectively allowing the code point
     * marked by this annotation to use public API declarations that are meant for external use only in.
     *
     * @see ForExternalUse
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.METHOD, ElementType.FIELD, ElementType.CONSTRUCTOR})
    public @interface AllowUsingApiForExternalUse {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/GraphBuilder.java

     * graph.putEdge("chocolate", "peanut butter");
     * graph.putEdge("peanut butter", "jelly");
     *
     * // Building an immutable graph
     * ImmutableGraph<String> immutableGraph =
     *     GraphBuilder.undirected()
     *         .allowsSelfLoops(true)
     *         .<String>immutable()
     *         .putEdge("bread", "bread")
     *         .putEdge("chocolate", "peanut butter")
     *         .putEdge("peanut butter", "jelly")
     *         .build();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     */
    package org.apache.maven.api.services;
    
    import java.util.function.Supplier;
    
    /**
     * Caches auxiliary data used during model building like already processed raw/effective models. The data in the cache
     * is meant for exclusive consumption by the model builder and is opaque to the cache implementation. The cache key is
     * formed by a combination of group id, artifact id, version and tag. The first three components generally refer to the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/iexport.go

    //             Offset declOff
    //         }
    //     }
    //
    //     Fingerprint [8]byte
    //
    // uvarint means a uint64 written out using uvarint encoding.
    //
    // []T means a uvarint followed by that many T objects. In other
    // words:
    //
    //     Len   uvarint
    //     Elems [Len]T
    //
    // stringOff means a uvarint that indicates an offset within the
    // Strings section. At that offset is another uvarint, followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/toleration.go

    //
    //  1. Empty toleration.effect means to match all taint effects,
    //     otherwise taint effect must equal to toleration.effect.
    //  2. If toleration.operator is 'Exists', it means to match all taint values.
    //  3. Empty toleration.key means to match all taint keys.
    //     If toleration.key is empty, toleration.operator must be 'Exists';
    //     this combination means to match all taint values and all taint keys.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue22662b.go

    var tests = []struct {
    	src, pos string
    }{
    	{"//line :10\n", ":10:"},                   // no filename means no filename
    	{"//line :10:4\n", "filename:10:4"},        // no filename means use existing filename
    	{"//line foo.go:10\n", "foo.go:10:"},       // no column means don't print a column
    	{"//line foo.go:10:4\n", "foo.go:10:4:"},   // column means print a column
    	{"//line foo.go:10:4\n\n", "foo.go:11:1:"}, // relative columns start at 1 after newline
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/AbstractConfigurationReportRenderer.java

    /**
     * An {@code abstract} {@link ReportRenderer} implementation that can be used to render a {@link ConfigurationReportModel}
     * according to a {@link AbstractConfigurationReportSpec}.
     *
     * This is meant to be the base class for any such renderer used for configuration reporting.
     *
     * @param <E> the destination type which will receive the model data and be responsible for writing it somewhere
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top