Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 122 for CEIL (0.17 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // but affects the other priority levels through the borrowing mechanism.
      // The server's concurrency limit (ServerCL) is divided among all the
      // priority levels in proportion to their NCS values:
      //
      // NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs )
      // sum_ncs = sum[priority level k] NCS(k)
      //
      // Bigger numbers mean a larger nominal concurrency limit,
      // at the expense of every other priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/output.json

                      {
                         "datasource": {
                            "type": "prometheus",
                            "uid": "$datasource"
                         },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // but affects the other priority levels through the borrowing mechanism.
      // The server's concurrency limit (ServerCL) is divided among all the
      // priority levels in proportion to their NCS values:
      //
      // NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs )
      // sum_ncs = sum[priority level k] NCS(k)
      //
      // Bigger numbers mean a larger nominal concurrency limit,
      // at the expense of every other priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/types.go

    	// borrowing seats from this level.
    	// The server's concurrency limit (ServerCL) is divided among the
    	// Limited priority levels in proportion to their NCS values:
    	//
    	// NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs )
    	// sum_ncs = sum[priority level k] NCS(k)
    	//
    	// Bigger numbers mean a larger nominal concurrency limit,
    	// at the expense of every other priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    func (q *Quantity) Value() int64 {
    	return q.ScaledValue(0)
    }
    
    // MilliValue returns the value of ceil(q * 1000); this could overflow an int64;
    // if that's a concern, call Value() first to verify the number is small enough.
    func (q *Quantity) MilliValue() int64 {
    	return q.ScaledValue(Milli)
    }
    
    // ScaledValue returns the value of ceil(q / 10^scale).
    // For example, NewQuantity(1, DecimalSI).ScaledValue(Milli) returns 1000.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    		nominalConcurrencyShares, lendablePercent, borrowingLimitPercent := plSpecCommons(plState.pl)
    		// The use of math.Ceil here means that the results might sum
    		// to a little more than serverConcurrencyLimit but the
    		// difference will be negligible.
    		concurrencyLimit := int(math.Ceil(float64(meal.cfgCtlr.serverConcurrencyLimit) * float64(*nominalConcurrencyShares) / meal.shareSum))
    		var lendableCL, borrowingCL int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. cmd/bucket-object-lock.go

    	}
    
    	// Pass in relative days from current time, to additionally
    	// to verify "object-lock-remaining-retention-days" policy if any.
    	days := int(math.Ceil(math.Abs(objRetention.RetainUntilDate.Sub(t).Hours()) / 24))
    
    	ret := objectlock.GetObjectRetentionMeta(oi.UserDefined)
    	if ret.Mode.Valid() {
    		// Retention has expired you may change whatever you like.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// the assured concurrency value (ACV) --- the number of requests
    	// that may be executing at a time --- for each such priority
    	// level:
    	//
    	//             ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )
    	//
    	// bigger numbers of ACS mean more reserved concurrent requests (at the
    	// expense of every other PL).
    	// This field has a default value of 30.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top