Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 87 for multiplexed (0.29 sec)

  1. android/guava/src/com/google/common/math/Stats.java

       * following constraints. This is the callers responsibility and is not enforced here.
       *
       * <ul>
       *   <li>If {@code count} is 0, {@code mean} may have any finite value (its only usage will be to
       *       get multiplied by 0 to calculate the sum), and the other parameters may have any values
       *       (they will not be used).
       *   <li>If {@code count} is 1, {@code sumOfSquaresOfDeltas} must be exactly 0.0 or {@link
       *       Double#NaN}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. src/runtime/metrics/doc.go

    		this is computed as GOMAXPROCS times the pause latency because
    		nothing else can be executing. This is the exact sum of samples
    		in /sched/pauses/total/gc:seconds if each sample is multiplied
    		by GOMAXPROCS at the time it is taken. This metric is an
    		overestimate, and not directly comparable to system CPU time
    		measurements. Compare only with other /cpu/classes metrics.
    
    	/cpu/classes/gc/total:cpu-seconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Stats.java

       * following constraints. This is the callers responsibility and is not enforced here.
       *
       * <ul>
       *   <li>If {@code count} is 0, {@code mean} may have any finite value (its only usage will be to
       *       get multiplied by 0 to calculate the sum), and the other parameters may have any values
       *       (they will not be used).
       *   <li>If {@code count} is 1, {@code sumOfSquaresOfDeltas} must be exactly 0.0 or {@link
       *       Double#NaN}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad_test.cc

      // changes how many minima exist.)
      // Instead, we use a single input that broadcast-multiplies a larger
      // tensor with equal values, and apply reduce_min to the multiplied
      // result.
      TensorShape x_shape({1});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      auto all_same = Mul(scope_, Const(scope_, {1.f, 1.f, 1.f}), x);
      auto y = Min(scope_, all_same, {0});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          if (size > (1 << 30)) return failure();
        }
        auto new_filter =
            rewriter.create<TF::MulOp>(mul_op.getLoc(), filter, new_const_val)
                .getZ();
        // If bias isn't None, it needs to be multiplied as well.
        if (!mlir::isa<NoneType>(bias.getType())) {
          bias = rewriter.create<TF::MulOp>(mul_op.getLoc(), bias, constant_val)
                     .getZ();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (1)
  6. pkg/kubelet/apis/config/types.go

    	EnableDebugFlagsHandler bool
    	// SeccompDefault enables the use of `RuntimeDefault` as the default seccomp profile for all workloads.
    	SeccompDefault bool
    	// MemoryThrottlingFactor specifies the factor multiplied by the memory limit or node allocatable memory
    	// when setting the cgroupv2 memory.high value to enforce MemoryQoS.
    	// Decreasing this factor will set lower high limit for container cgroups and put heavier reclaim pressure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    						},
    						SchemaProps: spec.SchemaProps{
    							Description: "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
    							Type:        []string{"array"},
    							Items: &spec.SchemaOrArray{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. cmd/data-scanner.go

    func (d *dynamicSleeper) Timer(ctx context.Context) func() {
    	t := time.Now()
    	return func() {
    		doneAt := time.Now()
    		d.Sleep(ctx, doneAt.Sub(t))
    	}
    }
    
    // Sleep sleeps the specified time multiplied by the sleep factor.
    // If the factor is updated the sleep will be done again with the new factor.
    func (d *dynamicSleeper) Sleep(ctx context.Context, base time.Duration) {
    	for {
    		// Grab current values
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. src/math/big/nat.go

    // Like karatsubaAdd, but does subtract.
    func karatsubaSub(z, x nat, n int) {
    	if c := subVV(z[0:n], z, x); c != 0 {
    		subVW(z[n:n+n>>1], z[n:], c)
    	}
    }
    
    // Operands that are shorter than karatsubaThreshold are multiplied using
    // "grade school" multiplication; for longer operands the Karatsuba algorithm
    // is used.
    var karatsubaThreshold = 40 // computed by calibrate_test.go
    
    // karatsuba multiplies x and y and leaves the result in z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

                properties:
                  detectMultiplier:
                    description: Configures the detection multiplier to determine packet
                      loss. The remote transmission interval will be multiplied by this
                      value to determine the connection loss detection timer.
                    format: int32
                    maximum: 255
                    minimum: 2
                    type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top