Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Cumulative (0.08 sec)

  1. cmd/metrics-resource.go

    	Name   MetricName
    	Labels map[string]string
    
    	// value captured in current cycle
    	Current float64
    
    	// Used when system provides cumulative (since uptime) values
    	// helps in calculating the current value by comparing the new
    	// cumulative value with previous one
    	Cumulative float64
    
    	Max   float64
    	Avg   float64
    	Sum   float64
    	Count uint64
    }
    
    func init() {
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 17.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

         * These versions correspond to different levels of validation that can be applied
         * during model building, based on the POM schema version.
         * <p>
         * The validation levels are cumulative, with higher versions including all validations
         * from lower versions plus additional checks specific to that version.
         */
        enum Version {
            /**
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-03 13:33
    - 2.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/Cache.java

      /** Discards all entries in the cache. */
      void invalidateAll();
    
      /** Returns the approximate number of entries in this cache. */
      long size();
    
      /**
       * Returns a current snapshot of this cache's cumulative statistics, or a set of default values if
       * the cache is not recording statistics. All statistics begin at zero and never decrease over the
       * lifetime of the cache.
       *
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 8.3K bytes
    - Viewed (0)
  4. cmd/bucket-replication-metrics.go

    }
    
    // SMA struct for calculating simple moving average
    type SMA struct {
    	buf       []float64
    	window    int     // len of buf
    	idx       int     // current index in buf
    	CAvg      float64 // cumulative average
    	prevSMA   float64
    	filledBuf bool
    }
    
    func newSMA(ln int) *SMA {
    	if ln <= 0 {
    		ln = defaultWindowSize
    	}
    	return &SMA{
    		buf:    make([]float64, ln),
    		window: ln,
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-08-15 12:04
    - 14.2K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

      //     then total_size is the cumulative byte size
      //     of all the strings in the list.
      // (3) If type == TF_ATTR_SHAPE and is_list == 0
      //     then total_size is the number of dimensions
      //     of the shape valued attribute, or -1
      //     if its rank is unknown.
      // (4) If type == TF_ATTR_SHAPE and is_list == 1
      //     then total_size is the cumulative number
      //     of dimensions of all shapes in the list.
    Registered: 2025-05-27 12:39
    - Last Modified: 2023-10-26 21:08
    - 82.3K bytes
    - Viewed (0)
  6. cmd/data-scanner.go

    			APIName: "Scanner",
    			Bucket:  i.bucket,
    			Object:  i.objectPath(),
    			Tags: map[string]string{
    				"x-minio-versions": strconv.Itoa(remainingVersions),
    			},
    		})
    	}
    
    	// Check if the cumulative size of all versions of this object is high.
    	if cumulativeSize >= scannerExcessObjectVersionsTotalSize.Load() {
    		// Notify object accessed via a GET request.
    		sendEvent(eventArgs{
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-05-22 15:42
    - 45.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.33.md

    - `kubeproxy_conntrack_reconciler_deleted_entries_total` metric can be used to track cumulative sum of conntrack flows cleared by reconciler. ([#130204](https://github.com/kubernetes/kubernetes/pull/130204), [@aroradaman](https://github.com/aroradaman))
    Registered: 2025-05-30 09:05
    - Last Modified: 2025-05-15 17:48
    - 257.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - The `priority_level_request_utilization` metric histogram is adjusted so that for the cases where `phase=waiting` the denominator is the cumulative capacity of all of the priority level's queues.
    Registered: 2025-05-30 09:05
    - Last Modified: 2024-05-06 09:23
    - 419.1K bytes
    - Viewed (0)
  9. api/go1.16.txt

    pkg runtime/metrics, method (Value) Kind() ValueKind
    pkg runtime/metrics, method (Value) Uint64() uint64
    pkg runtime/metrics, type Description struct
    pkg runtime/metrics, type Description struct, Cumulative bool
    pkg runtime/metrics, type Description struct, Description string
    pkg runtime/metrics, type Description struct, Kind ValueKind
    pkg runtime/metrics, type Description struct, Name string
    Registered: 2025-05-27 11:13
    - Last Modified: 2022-12-02 16:30
    - 479.2K bytes
    - Viewed (0)
  10. RELEASE.md

    *   GPU
        *   GPU acceleration now supports quantized models by default
    *   `DynamicBuffer::AddJoinedString()` will now add a separator if the first
        string to be joined is empty.
    *   Adds support for cumulative sum (cumsum), both as builtin op and MLIR
        conversion.
    
    ### `TensorRT`
    
    *   Issues a warning when the `session_config` parameter for the TF1 converter
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-21 16:40
    - 738.1K bytes
    - Viewed (1)
Back to top