Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for totalHV (0.13 sec)

  1. cmd/bucket-stats_gen.go

    		}
    		switch msgp.UnsafeString(field) {
    		case "Totals":
    			var zb0002 uint32
    			zb0002, err = dc.ReadArrayHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "Totals")
    				return
    			}
    			if zb0002 != uint32(60) {
    				err = msgp.ArrayError{Wanted: uint32(60), Got: zb0002}
    				return
    			}
    			for za0001 := range z.Totals {
    				err = z.Totals[za0001].DecodeMsg(dc)
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{endpoint}},{{server}}",
              "refId": "A"
            }
          ],
          "title": "Total Failed Data",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	bucket = bucket[:256] // eliminate bounds check for bucket[i] below
    	total := int64(0)
    	for i, n := range freq {
    		bucket[i] = total
    		total += n
    	}
    }
    
    func bucketMin_32(text []int32, freq, bucket []int32) {
    	freq = freq_32(text, freq, bucket)
    	total := int32(0)
    	for i, n := range freq {
    		bucket[i] = total
    		total += n
    	}
    }
    
    func bucketMin_64(text []int64, freq, bucket []int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
    	// +optional
    	AvailableReplicas int32 `json:"availableReplicas,omitempty" protobuf:"varint,4,opt,name=availableReplicas"`
    
    	// Total number of unavailable pods targeted by this deployment. This is the total number of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
    	// +optional
    	AvailableReplicas int32 `json:"availableReplicas,omitempty" protobuf:"varint,4,opt,name=availableReplicas"`
    
    	// Total number of unavailable pods targeted by this deployment. This is the total number of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    							t.Errorf("Empty Namespace %s was not deleted", ns)
    						}
    					}
    				}
    
    				if total2 != total1+len(tt.creates)-len(tt.deletes) {
    					t.Errorf("Expected %d envoy filters, found %d", total1+len(tt.creates)-len(tt.deletes), total2)
    				}
    			})
    		}
    	}
    }
    
    func TestWasmPlugins(t *testing.T) {
    	env := &Environment{}
    	store := NewFakeStore()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Example: when this is set to 30%, the new RC can be scaled up immediately when
    	// the rolling update starts, such that the total number of old and new pods do not exceed
    	// 130% of desired pods. Once old pods have been killed,
    	// new RC can be scaled up further, ensuring that total number of pods running
    	// at any time during the update is at most 130% of desired pods.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    		}
    
    		if len(need) == 0 {
    			return
    		}
    
    		var total uintptr
    		for i, name := range need {
    			total += have[i]
    			t.Logf("found %d samples in expected function %s\n", have[i], name)
    		}
    		if total == 0 {
    			t.Logf("no samples in expected functions")
    			ok = false
    		}
    
    		// We'd like to check a reasonable minimum, like
    		// total / len(have) / smallconstant, but this test is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    	Available  uint64 // in bytes
    	MaxUsedPct int    // Used disk percentage of most filled disk, rounded down.
    }
    
    // TotalAvailable - total available space
    func (p serverPoolsAvailableSpace) TotalAvailable() uint64 {
    	total := uint64(0)
    	for _, z := range p {
    		total += z.Available
    	}
    	return total
    }
    
    // FilterMaxUsed will filter out any pools that has used percent bigger than max,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	heapReleased sysMemStat    // bytes released to the OS
    	heapFree     sysMemStat    // bytes not in any span, but not released to the OS
    	totalAlloc   atomic.Uint64 // total bytes allocated
    	totalFree    atomic.Uint64 // total bytes freed
    	mappedReady  atomic.Uint64 // total virtual memory in the Ready state (see mem.go).
    
    	// test indicates that this is a test-only copy of gcControllerState.
    	test bool
    
    	_ cpu.CacheLinePad
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top