Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for Floor (0.04 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedSet.java

      @CheckForNull
      public E lower(E e) {
        return Iterators.<@Nullable E>getNext(headSet(e, false).descendingIterator(), null);
      }
    
      /** @since 12.0 */
      @Override
      @CheckForNull
      public E floor(E e) {
        return Iterators.<@Nullable E>getNext(headSet(e, true).descendingIterator(), null);
      }
    
      /** @since 12.0 */
      @Override
      @CheckForNull
      public E ceiling(E e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    			qps := float64(count) / grace.Seconds()
    			// TODO: we don't want the QPS (max requests drained per second) to
    			//  get below a certain floor value, since we want the server to
    			//  drain the active watch requests as soon as possible.
    			//  For now, it's hard coded to 200, and it is subject to change
    			//  based on the result from the scale testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Round to integer, float64 only.
    	// Special cases:
    	//   ±∞  → ±∞ (sign preserved)
    	//   ±0  → ±0 (sign preserved)
    	//   NaN → NaN
    	{name: "Floor", argLength: 1},       // round arg0 toward -∞
    	{name: "Ceil", argLength: 1},        // round arg0 toward +∞
    	{name: "Trunc", argLength: 1},       // round arg0 toward 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FFLOOR", argLength: 1, reg: fp11, asm: "FRIM"},                                          // floor(arg0), float64
    		{name: "FCEIL", argLength: 1, reg: fp11, asm: "FRIP"},                                           // ceil(arg0), float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    		}
    		if c.vers == VersionTLS13 {
    			return c.in.setErrorLocked(&net.OpError{Op: "remote error", Err: alert(data[1])})
    		}
    		switch data[0] {
    		case alertLevelWarning:
    			// Drop the record on the floor and retry.
    			return c.retryReadRecord(expectChangeCipherSpec)
    		case alertLevelError:
    			return c.in.setErrorLocked(&net.OpError{Op: "remote error", Err: alert(data[1])})
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    						continue
    					}
    					key, _ := kv.Key.(*ast.Ident)
    					// do all possible checks early (before exiting due to errors)
    					// so we don't drop information on the floor
    					check.expr(nil, x, kv.Value)
    					if key == nil {
    						check.errorf(kv, InvalidLitField, "invalid field name %s in struct literal", kv.Key)
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

      %10:2 = "tf.Unpack"(%arg1) {axis = 2 : i64, device = ""} : (tensor<2x16x2xf32>) -> (tensor<2x16xf32>, tensor<2x16xf32>)
      %11 = "tf.Floor"(%10#0) {device = ""} : (tensor<2x16xf32>) -> tensor<2x16xf32>
      %12 = "tf.Maximum"(%0, %11) {device = ""} : (tensor<f32>, tensor<2x16xf32>) -> tensor<2x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // performance.
    
          // For Exponent = 2, the expected number of collisions per shuffle is
          // maximized at n = floor((2^32-1)^(1/2)) = 65535 where the expectation is
          // about 1/2.
    
          // For Exponent = 3, the expected number of collisions per shuffle is
          // maximized at n = floor((2^32-1)^(1/3)) = 1625 where the expectation is
          // about 1/3255.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        //
        // We don't have a frac(x) primitive in XLA and computing it is tricky, but
        // because abs(sin(pi * x)) = abs(sin(pi * abs(x))), it's good enough for
        // our purposes to use abs(frac(x)) = abs(x) - floor(abs(x)).
        //
        // Furthermore, pi * abs(frac(x)) loses precision when abs(frac(x)) is close
        // to 1.  To remedy this, we can use the fact that sin(pi * x) in the domain
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    						continue
    					}
    					key, _ := kv.Key.(*syntax.Name)
    					// do all possible checks early (before exiting due to errors)
    					// so we don't drop information on the floor
    					check.expr(nil, x, kv.Value)
    					if key == nil {
    						check.errorf(kv, InvalidLitField, "invalid field name %s in struct literal", kv.Key)
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top