Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for Percentage (0.14 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	closed bool
    
    	nsLister listersv1.NamespaceLister
    
    	metricsRecorder metrics.MetricAsyncRecorder
    	// pluginMetricsSamplePercent is the percentage of plugin metrics to be sampled.
    	pluginMetricsSamplePercent int
    
    	// isSchedulingQueueHintEnabled indicates whether the feature gate for the scheduling queue is enabled.
    	isSchedulingQueueHintEnabled bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    	}
    	return setDriveCounts
    }
    
    type serverPoolsAvailableSpace []poolAvailableSpace
    
    type poolAvailableSpace struct {
    	Index      int
    	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
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    			//	    |               |                   |
    			//	  print          print              print
    			//
    			// When -coverpkg=<pattern> is in effect, we want to
    			// express the coverage percentage for each package as a
    			// fraction of *all* the statements that match the
    			// pattern, hence if "c" doesn't import "a", we need to
    			// pass as meta-data file for "a" (emitted during the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/runtime/map.go

    //        7.00        27.14        10.15         4.50         7.00
    //        7.50        34.03         9.73         4.75         7.50
    //        8.00        41.10         9.40         5.00         8.00
    //
    // %overflow   = percentage of buckets which have an overflow bucket
    // bytes/entry = overhead bytes used per key/elem pair
    // hitprobe    = # of entries to check when looking up a present key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top