Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for Percent (0.18 sec)

  1. docs/metrics/prometheus/grafana/minio-dashboard.json

          "options": {
            "displayLabels": [],
            "legend": {
              "displayMode": "table",
              "placement": "bottom",
              "showLegend": true,
              "values": [
                "percent"
              ]
            },
            "pieType": "donut",
            "reduceOptions": {
              "calcs": [
                "lastNotNull"
              ],
              "fields": "",
              "values": false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    // The zone is considered:
    // - fullyDisrupted if there're no Ready Nodes,
    // - partiallyDisrupted if at least than nc.unhealthyZoneThreshold percent of Nodes are not Ready,
    // - normal otherwise
    func (nc *Controller) ComputeZoneState(nodeReadyConditions []*v1.NodeCondition) (int, ZoneState) {
    	readyNodes := 0
    	notReadyNodes := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// base calculation, at minimum.
    	memoryLimitMinHeapGoalHeadroom = 1 << 20
    
    	// memoryLimitHeapGoalHeadroomPercent is how headroom the memory-limit-based
    	// heap goal should have as a percent of the maximum possible heap goal allowed
    	// to maintain the memory limit.
    	memoryLimitHeapGoalHeadroomPercent = 3
    )
    
    // gcController implements the GC pacing controller that determines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	"unsafe"
    )
    
    const (
    	// The background scavenger is paced according to these parameters.
    	//
    	// scavengePercent represents the portion of mutator time we're willing
    	// to spend on scavenging in percent.
    	scavengePercent = 1 // 1%
    
    	// retainExtraPercent represents the amount of memory over the heap goal
    	// that the scavenger should keep as a buffer space for the allocator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    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,
    // unless all have that, in which case all are preserved.
    func (p serverPoolsAvailableSpace) FilterMaxUsed(max int) {
    	// We aren't modifying p, only entries in it, so we don't need to receive a pointer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    				return err
    			}
    			mf, err := work.BuildActionCoverMetaFile(a)
    			if err != nil {
    				return err
    			} else if mf != "" {
    				reportNoTestFiles = false
    				// Write out "percent statements covered".
    				if err := work.WriteCoveragePercent(b, a, mf, stdout); err != nil {
    					return err
    				}
    				// If -coverprofile is in effect, then generate a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

      }
    
      /**
       * Specifies that each entry should be automatically removed from the cache once a fixed duration
       * has elapsed after the entry's creation, or the most recent replacement of its value.
       *
       * <p>When {@code duration} is zero, this method hands off to {@link #maximumSize(long)
       * maximumSize}{@code (0)}, ignoring any otherwise-specified maximum size or weight. This can be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    	if args.DesiredReplicas >= args.CurrentReplicas {
    		reason = "ScaleUpStabilized"
    		message = "recent recommendations were lower than current one, applying the lowest recent recommendation"
    	} else {
    		reason = "ScaleDownStabilized"
    		message = "recent recommendations were higher than current one, applying the highest recent recommendation"
    	}
    	return recommendation, reason, message
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	// that all intermediate states are synced to a worker, only the most recent.
    	// This state will not be visible to downstream components until a pod worker
    	// has begun processing it.
    	pendingUpdate *UpdatePodOptions
    	// activeUpdate is the most recent version of the pod's state that will be
    	// passed to a sync*Pod function. A pod becomes visible to downstream components
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_windows.go

    }
    
    func GetServByName(name string, proto string) (s *Servent, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(name)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(proto)
    	if err != nil {
    		return
    	}
    	return _GetServByName(_p0, _p1)
    }
    
    func _GetServByName(name *byte, proto *byte) (s *Servent, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
Back to top