Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for CEIL (0.07 sec)

  1. 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)
  2. staging/src/k8s.io/api/flowcontrol/v1beta3/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
    - 31.9K bytes
    - Viewed (0)
  3. src/sort/zsortinterface.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: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/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)
  5. 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)
  6. src/slices/zsortordered.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: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	// Use non linear growth to emphasize the size difference.
    	baseFontSize, maxFontGrowth := 8, 16.0
    	fontSize := baseFontSize
    	if maxFlat != 0 && flat != 0 && float64(abs64(flat)) <= maxFlat {
    		fontSize += int(math.Ceil(maxFontGrowth * math.Sqrt(float64(abs64(flat))/maxFlat)))
    	}
    
    	// Determine node shape.
    	shape := "box"
    	if attrs != nil && attrs.Shape != "" {
    		shape = attrs.Shape
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  8. src/slices/zsortanyfunc.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: Tue May 23 23:33:29 UTC 2023
    - 12.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. 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)
Back to top