Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for saturate (0.38 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"40.1T", decQuantity(401, 11, DecimalSI)},
    		{"300.2T", decQuantity(3002, 11, DecimalSI)},
    		{"2.5P", decQuantity(25, 14, DecimalSI)},
    		{"1.01E", decQuantity(101, 16, DecimalSI)},
    
    		// Things that saturate/round
    		{"3.001n", decQuantity(4, -9, DecimalSI)},
    		{"1.1E-9", decQuantity(2, -9, DecimalExponent)},
    		{"0.0000000001", decQuantity(1, -9, DecimalSI)},
    		{"0.0000000005", decQuantity(1, -9, DecimalSI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Rsh32x(64|32|16|8)  x y) && shiftIsBounded(v) => (SRAW x y)
    (Rsh16x(64|32|16|8)  x y) && shiftIsBounded(v) => (SRAD (MOVHreg x) y)
    (Rsh8x(64|32|16|8)   x y) && shiftIsBounded(v) => (SRAD (MOVBreg x) y)
    
    // Unbounded shifts. Go shifts saturate to 0 or -1 when shifting beyond the number of
    // bits in a type, PPC64 shifts do not (see the ISA for details).
    //
    // Note, y is always non-negative.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

      }
    
      /**
       * Returns the number of nanoseconds of the given duration without throwing or overflowing.
       *
       * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to either
       * {@link Long#MAX_VALUE} or {@link Long#MIN_VALUE}. This behavior can be useful when decomposing
       * a duration in order to call a legacy API which requires a {@code long, TimeUnit} pair.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p384_fiat64.go

    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    //   All functions also ensure that these two properties are true of
    //
    //   return values.
    //
    //
    //
    // Computed values:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
Back to top