Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 197 for statistics (0.37 sec)

  1. src/runtime/pprof/pprof.go

    //	        if err != nil {
    //	            log.Fatal("could not create memory profile: ", err)
    //	        }
    //	        defer f.Close() // error handling omitted for example
    //	        runtime.GC() // get up-to-date statistics
    //	        if err := pprof.WriteHeapProfile(f); err != nil {
    //	            log.Fatal("could not write memory profile: ", err)
    //	        }
    //	    }
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. internal/grid/manager.go

    //
    //lint:ignore U1000 This is used by tests.
    func (m *Manager) debugMsg(d debugMsg, args ...any) {
    	for _, c := range m.targets {
    		c.debugMsg(d, args...)
    	}
    }
    
    // ConnStats returns the connection statistics for all connections.
    func (m *Manager) ConnStats() madmin.RPCMetrics {
    	var res madmin.RPCMetrics
    	for _, c := range m.targets {
    		t := c.Stats()
    		res.Merge(&t)
    	}
    	return res
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Cache.kt

     * may cause corruption or runtime errors if not. It may however be shared amongst multiple OkHttpClient
     * instances.
     *
     * ## Cache Optimization
     *
     * To measure cache effectiveness, this class tracks three statistics:
     *
     *  * **[Request Count:][requestCount]** the number of HTTP requests issued since this cache was
     *    created.
     *  * **[Network Count:][networkCount]** the number of those requests that required network use.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

        signature_def_map: _SignatureDefMap,
    ) -> None:
      """Runs static-range Post-Training Quantization.
    
      Runs static-range PTQ for the model. Runs the calibration step with
      `representative_dataset` to collect statistics required for quantization. This
      produces the quantized GraphDef along with the SignatureDefs which might have
      been modified according to the changes in the graph.
    
      Args:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. docs/metrics/v3.md

    |--------------------------|-----------------------------|
    | `/cluster/health`        | Cluster health metrics      |
    | `/cluster/usage/objects` | Object statistics           |
    | `/cluster/usage/buckets` | Object statistics by bucket |
    | `/cluster/erasure-set`   | Erasure set metrics         |
    |                          |                             |
    
    ## Metrics Listing
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  6. src/runtime/debug/garbage.go

    	Pause          []time.Duration // pause history, most recent first
    	PauseEnd       []time.Time     // pause end times history, most recent first
    	PauseQuantiles []time.Duration
    }
    
    // ReadGCStats reads statistics about garbage collection into stats.
    // The number of entries in the pause history is system-dependent;
    // stats.Pause slice will be reused if large enough, reallocated otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/runtime/mcache.go

    	return c
    }
    
    // freemcache releases resources associated with this
    // mcache and puts the object onto a free list.
    //
    // In some cases there is no way to simply release
    // resources, such as statistics, so donate them to
    // a different mcache (the recipient).
    func freemcache(c *mcache) {
    	systemstack(func() {
    		c.releaseAll()
    		stackcache_clear(c)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/internal/trace/gc.go

    	return x
    }
    
    // An accumulator takes a windowed mutator utilization function and
    // tracks various statistics for that function.
    type accumulator struct {
    	mmu float64
    
    	// bound is the mutator utilization bound where adding any
    	// mutator utilization above this bound cannot affect the
    	// accumulated statistics.
    	bound float64
    
    	// Worst N window tracking
    	nWorst int
    	wHeap  utilHeap
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. src/math/big/prime.go

    // https://www.ams.org/journals/mcom/2001-70-234/S0025-5718-00-01197-2/S0025-5718-00-01197-2.pdf
    //
    // Baillie, "Extra strong Lucas pseudoprimes", OEIS A217719, https://oeis.org/A217719.
    //
    // Jacobsen, "Pseudoprime Statistics, Tables, and Data", http://ntheory.org/pseudoprimes.html.
    //
    // Nicely, "The Baillie-PSW Primality Test", https://web.archive.org/web/20191121062007/http://www.trnicely.net/misc/bpsw.html.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/http.go

      Clicking on a main function shows links to the four types of
      blocking profile (see below) applied to that subset of goroutines.
    
      It also shows a table of specific goroutine instances, with various
      execution statistics and a link to the event timeline for each one.
    
      The timeline displays only the selected goroutine and any others it
      interacts with via block/unblock events. (The timeline is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top