Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for _sum (0.03 sec)

  1. manifests/addons/dashboards/istio-service-dashboard.json

    1. "datasource": {
    2. "type": "prometheus",
    3. "uid": "${datasource}"
    4. },
    5. "editorMode": "code",
    6. "expr": "sum(irate(istio_requests_total{reporter=~\"$qrep\",destination_service=~\"$service\",response_code!~\"5.*\"}[5m])) / (sum(irate(istio_requests_total{reporter=~\"$qrep\",destination_service=~\"$service\"}[5m])) or on () vector(1))",
    7. "format": "time_series",
    8. "intervalFactor": 1,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/istio-workload-dashboard.json

    1. "name": "workload",
    2. "options": [],
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

    1. {
    2. "datasource": {
    3. "type": "prometheus",
    4. "uid": "${DS_PROMETHEUS}"
    5. },
    6. "editorMode": "code",
    7. "exemplar": true,
    8. "expr": "sum by (bucket,range) (minio_bucket_objects_size_distribution{job=\"$scrape_jobs\"})",
    9. "format": "time_series",
    10. "instant": false,
    11. "interval": "",
    12. "intervalFactor": 1,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    1. }
    2. // no mismatch
    3. for _, s := range slc {
    4. sum := info.StatsSummary[s.DeploymentID]
    5. if !olockCfgMismatch && olockCfgCount == numSites {
    6. sum.ReplicatedLockConfig++
    7. }
    8. if !versionCfgMismatch && versionCfgCount == numSites {
    9. sum.ReplicatedVersioningConfig++
    10. }
    11. if !sseCfgMismatch && sseCfgCount == numSites {
    12. sum.ReplicatedSSEConfig++
    13. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

    1. }
    2. sum -= segment.modCount;
    3. }
    4. return sum == 0L;
    5. }
    6. return true;
    7. }
    8.  
    9. long longSize() {
    10. Segment<K, V>[] segments = this.segments;
    11. long sum = 0;
    12. for (Segment<K, V> segment : segments) {
    13. sum += segment.count;
    14. }
    15. return sum;
    16. }
    17.  
    18. @Override
    19. public int size() {
    20. return Ints.saturatedCast(longSize());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. cmd/metrics-v2.go

    1. Value: float64(offlineDrives.Sum()),
    2. })
    3.  
    4. metrics = append(metrics, MetricV2{
    5. Description: getNodeDrivesOnlineTotalMD(),
    6. Value: float64(onlineDrives.Sum()),
    7. })
    8.  
    9. metrics = append(metrics, MetricV2{
    10. Description: getNodeDrivesTotalMD(),
    11. Value: float64(totalDrives.Sum()),
    12. })
    13.  
    14. metrics = append(metrics, MetricV2{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    1. }
    2. )
    3.  
    4. type ObjectInput struct {
    5. objectName string
    6. partLengths []int64
    7.  
    8. metaData map[string]string
    9. }
    10.  
    11. objectLength := func(oi ObjectInput) (sum int64) {
    12. for _, l := range oi.partLengths {
    13. sum += l
    14. }
    15. return
    16. }
    17.  
    18. // set of inputs for uploading the objects before tests for
    19. // downloading is done. Data bytes are from DummyDataGen.
    20. objectInputs := []ObjectInput{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 20:10:44 UTC 2024
    - 163.2K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    1. }
    2. onlineDisks, offlineDisks := getOnlineOfflineDisksStats(allDisks)
    3.  
    4. backend = madmin.ErasureBackend{
    5. Type: madmin.ErasureType,
    6. OnlineDisks: onlineDisks.Sum(),
    7. OfflineDisks: offlineDisks.Sum(),
    8. StandardSCParity: backendInfo.StandardSCParity,
    9. RRSCParity: backendInfo.RRSCParity,
    10. TotalSets: backendInfo.TotalSets,
    11. DrivesPerSet: backendInfo.DrivesPerSet,
    12. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/popper.min.js.map

    element.ownerDocument.documentElement;\n    const scrollingElement = element.ownerDocument.scrollingElement || html;\n    return scrollingElement[upperSide];\n  }\n\n  return element[upperSide];\n}\n","import getScroll from './getScroll';\n\n/*\n * Sum or subtract the element scroll values (left and top) from a given rect object\n * @method\n * @memberof Popper.Utils\n * @param {Object} rect - Rect object you want to change\n * @param {HTMLElement} element - The element from the function reads the...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 120.9K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    1. distinct arrays always represent distinct storage.
    2. </p>
    3. <p>
    4. The array underlying a slice may extend past the end of the slice.
    5. The <i>capacity</i> is a measure of that extent: it is the sum of
    6. the length of the slice and the length of the array beyond the slice;
    7. a slice of length up to that capacity can be created by
    8. <a href="#Slice_expressions"><i>slicing</i></a> a new one from the original slice.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top