Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for statistics (0.21 sec)

  1. cmd/data-scanner-metric.go

    func (p *scannerMetrics) lifetime(m scannerMetric) uint64 {
    	if m >= scannerMetricLast {
    		return 0
    	}
    	val := atomic.LoadUint64(&p.operations[m])
    	return val
    }
    
    // lastMinute returns the last minute statistics of a metric.
    // m should be < scannerMetricLastRealtime
    func (p *scannerMetrics) lastMinute(m scannerMetric) AccElem {
    	if m >= scannerMetricLastRealtime {
    		return AccElem{}
    	}
    	val := p.latency[m].total()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/numberlines.go

    	return fap[i].f < fap[j].f
    }
    func (fap fileAndPairs) Swap(i, j int) {
    	fap[i], fap[j] = fap[j], fap[i]
    }
    
    // -d=ssa/number_lines/stats=1 (that bit) for line and file distribution statistics
    // -d=ssa/number_lines/debug for information about why particular values are marked as statements.
    func numberLines(f *Func) {
    	po := f.Postorder()
    	endlines := make(map[ID]src.XPos)
    	ranges := make(map[int]lineRange)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. pkg/cache/cache.go

    // Package cache provides general-purpose in-memory caches.
    // Different caches provide different eviction policies suitable for
    // specific use cases.
    package cache
    
    import (
    	"time"
    )
    
    // Stats returns usage statistics about an individual cache, useful to assess the
    // efficiency of a cache.
    //
    // The values returned in this struct are approximations of the current state of the cache.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

    import java.util.Locale;
    import java.util.Properties;
    
    import org.apache.maven.jline.MessageUtils;
    import org.apache.maven.utils.Os;
    import org.slf4j.Logger;
    
    /**
     * Utility class used to report errors, statistics, application version info, etc.
     *
     */
    public final class CLIReportingUtils {
        // CHECKSTYLE_OFF: MagicNumber
        public static final long MB = 1024 * 1024;
    
        private static final long ONE_SECOND = 1000L;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver_with_skipping.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -stablehlo-insert-calibration-statistics-saver='aggregator-ops-to-ignore=skipping_id' | FileCheck %s
    
    func.func @serving_default(%arg0: tensor<1x3x4x3xf32>) -> (tensor<1x2x2x2xf32>) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input_tensor:0", outputs = "PartitionedCall:0"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleBuildResultFunctionalTest.groovy

            where:
            level << [LogLevel.DEBUG, LogLevel.INFO, LogLevel.LIFECYCLE, LogLevel.WARN, LogLevel.QUIET]
        }
    
        def "reports task execution statistics on build failure with log level #level"() {
            buildFile << """
                task broken {
                    doLast {
                        throw new RuntimeException("broken")
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          representing the contents of the converted model. When extended_return
          flag is set to true returns a dictionary that contains string representation
          of the converted model and some statistics like arithmetic ops count.
          `debug_info_str` contains the `GraphDebugInfo` proto. When
          `enable_mlir_converter` is True, tuse MLIR-based conversion instead of
          TOCO conversion.
        )pbdoc");
      m.def(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/math/big/calibrate_test.go

    			count = 10 // this many extra measurements after we got both thresholds
    		}
    
    		th++
    	}
    }
    
    func measureSqr(words, nruns int, mode string) time.Duration {
    	// more runs for better statistics
    	initBasicSqr, initKaratsubaSqr := basicSqrThreshold, karatsubaSqrThreshold
    
    	switch mode {
    	case sqrModeMul:
    		basicSqrThreshold = words + 1
    	case sqrModeBasic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. cmd/consolelogger.go

    }
    
    // String - stringer function for interface compatibility
    func (sys *HTTPConsoleLoggerSys) String() string {
    	return logger.ConsoleLoggerTgt
    }
    
    // Stats returns the target statistics.
    func (sys *HTTPConsoleLoggerSys) Stats() types.TargetStats {
    	return types.TargetStats{
    		TotalMessages:  atomic.LoadInt64(&sys.totalMessages),
    		FailedMessages: atomic.LoadInt64(&sys.failedMessages),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunner.java

            FileHasherStatistics.Collector fileHasherStatisticsCollector,
            DirectorySnapshotterStatistics.Collector directorySnapshotterStatisticsCollector
        ) {
            LOGGER.warn("VFS> Statistics {}:", title);
            LOGGER.warn("VFS> > Stat: {}", statStatisticsCollector.collect());
            LOGGER.warn("VFS> > FileHasher: {}", fileHasherStatisticsCollector.collect());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top