Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for CEIL (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    //	...
    //	wait.BackoffUntil(..., bm.Backoff, ...)
    //
    // Use:
    //
    //	delayFn := wait.Backoff{
    //	  Duration: init,
    //	  Cap:      max,
    //	  Steps:    int(math.Ceil(float64(max) / float64(init))), // now a required argument
    //	  Factor:   factor,
    //	  Jitter:   jitter,
    //	}.DelayWithReset(reset, clock)
    //	wait.BackoffUntil(..., delayFn.Timer(), ...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (LocalAddr <t> {sym} base _)  && !t.Elem().HasPointers() => (LoweredAddr {sym} base)
    
    // Write barrier.
    (WB ...) => (LoweredWB ...)
    
    // --- Intrinsics ---
    (Sqrt ...) => (F64Sqrt ...)
    (Trunc ...) => (F64Trunc ...)
    (Ceil ...) => (F64Ceil ...)
    (Floor ...) => (F64Floor ...)
    (RoundToEven ...) => (F64Nearest ...)
    (Abs ...) => (F64Abs ...)
    (Copysign ...) => (F64Copysign ...)
    
    (Sqrt32 ...) => (F32Sqrt ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/cpu_manager.go

    		}
    
    		// Take the ceiling of the reservation, since fractional CPUs cannot be
    		// exclusively allocated.
    		reservedCPUsFloat := float64(reservedCPUs.MilliValue()) / 1000
    		numReservedCPUs := int(math.Ceil(reservedCPUsFloat))
    		policy, err = NewStaticPolicy(topo, numReservedCPUs, specificCPUs, affinity, cpuPolicyOptions)
    		if err != nil {
    			return nil, fmt.Errorf("new static policy error: %w", err)
    		}
    
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  4. src/strconv/ftoaryu.go

    	}
    	trimmed := 0
    	// Remember last trimmed digit to check for round-up.
    	// c0 will be used to remember zeroness of following digits.
    	cNextDigit := 0
    	for upper > 0 {
    		// Repeatedly compute:
    		// l = Ceil(lower / 10^k)
    		// c = Round(central / 10^k)
    		// u = Floor(upper / 10^k)
    		// and stop when c goes out of the (l, u) interval.
    		l := (lower + 9) / 10
    		c, cdigit := central/10, central%10
    		u := upper / 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/QuantilesTest.java

        // We have q=100, k=index, and N=9951. Therefore k*(N-1)/q is 99.5*index. If index is even, that
        // is an integer 199*index/2. If index is odd, that is halfway between floor(199*index/2) and
        // ceil(199*index/2).
        if (index % 2 == 0) {
          int position = IntMath.divide(199 * index, 2, UNNECESSARY);
          return PSEUDORANDOM_DATASET_SORTED.get(position);
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. 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)
  8. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. src/sort/gen_sort_variants.go

    // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in
    // Computer Science, pages 714-723. Springer, 2004.
    //
    // Let M = m-a and N = b-n. Wolog M < N.
    // The recursion depth is bound by ceil(log(N+M)).
    // The algorithm needs O(M*log(N/M + 1)) calls to data.Less.
    // The algorithm needs O((M+N)*log(M)) calls to data.Swap.
    //
    // The paper gives O((M+N)*log(M)) as the number of assignments assuming a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top