Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for CEIL (0.3 sec)

  1. cmd/utils.go

    // of crashing.
    func ceilFrac(numerator, denominator int64) (ceil int64) {
    	if denominator == 0 {
    		// do nothing on invalid input
    		return
    	}
    	// Make denominator positive
    	if denominator < 0 {
    		numerator = -numerator
    		denominator = -denominator
    	}
    	ceil = numerator / denominator
    	if numerator > 0 && numerator%denominator != 0 {
    		ceil++
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    					destWeight := float64(originalWeight*weight) / float64(totalWeight)
    					if destWeight > 0 {
    						loadAssignment.Endpoints[index].LoadBalancingWeight = &wrappers.UInt32Value{
    							Value: uint32(math.Ceil(destWeight)),
    						}
    					}
    				}
    			}
    
    			// remove groups of endpoints in a locality that miss matched
    			for i := range misMatched {
    				if loadAssignment.Endpoints[i] != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/flowcontrol/v1/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: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // following condition must hold true for padding to be `SAME`:
        // output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides[i])
        auto get_output_dim_for_same_padding = [](int64_t input_dim,
                                                  int64_t stride_dim) -> int64_t {
          return std::ceil(input_dim / static_cast<double>(stride_dim));
        };
        return output_height ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. src/math/rand/v2/rand.go

    	// Since there are 2⁶⁴ possible inputs x and only n possible outputs,
    	// the output is necessarily biased if n does not divide 2⁶⁴.
    	// In general (x*n)/2⁶⁴ = k for x*n in [k*2⁶⁴,(k+1)*2⁶⁴).
    	// There are either floor(2⁶⁴/n) or ceil(2⁶⁴/n) possible products
    	// in that range, depending on k.
    	// But suppose we reject the sample and try again when
    	// x*n is in [k*2⁶⁴, k*2⁶⁴+(2⁶⁴%n)), meaning rejecting fewer than n possible
    	// outcomes out of the 2⁶⁴.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // -----
    
    // CHECK-LABEL: @ceil
    func.func @ceil(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      // CHECK:  mhlo.ceil %arg0 : tensor<2xf32>
      %0 = "tf.Ceil"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    // CHECK-LABEL: func @ceil_dynamic
    func.func @ceil_dynamic(%arg0: tensor<?xf32>) -> tensor<?xf32> {
      // CHECK:  mhlo.ceil %arg0 : tensor<?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top