Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for remainders (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding.go

    	// 15 is the largest possible value of handSize
    	var remainders [15]int
    
    	for i := 0; i < d.handSize; i++ {
    		hashValueNext := hashValue / uint64(d.deckSize-i)
    		remainders[i] = int(hashValue - uint64(d.deckSize-i)*hashValueNext)
    		hashValue = hashValueNext
    	}
    
    	for i := 0; i < d.handSize; i++ {
    		card := remainders[i]
    		for j := i; j > 0; j-- {
    			if card >= remainders[j-1] {
    				card++
    			}
    		}
    		pick(card)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 08:38:03 UTC 2019
    - 4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/Quantiles.java

            // get a rounded ratio and a remainder which can be expressed as ints, without risk of
            // overflow:
            int quotient = (int) LongMath.divide(numerator, scale, RoundingMode.DOWN);
            int remainder = (int) (numerator - (long) quotient * scale);
            quotients[i] = quotient;
            remainders[i] = remainder;
            requiredSelections[requiredSelectionsCount] = quotient;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Quantiles.java

            // get a rounded ratio and a remainder which can be expressed as ints, without risk of
            // overflow:
            int quotient = (int) LongMath.divide(numerator, scale, RoundingMode.DOWN);
            int remainder = (int) (numerator - (long) quotient * scale);
            quotients[i] = quotient;
            remainders[i] = remainder;
            requiredSelections[requiredSelectionsCount] = quotient;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    Instead of creating new storage for the remainders and copying digits from u
    as indicated by the arrows, we use u's storage directly as both the source
    and destination of the subtractions, so that the remainders overwrite
    successive overlapping sections of u as the division proceeds, using a slice
    of u to identify the current section. This avoids all the copying as well as
    shifting of remainders.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/LongMath.java

            if (result < 0) {
              result = UnsignedLongs.remainder(result, m);
            }
            // result < 2^63 again
            result += aLo * bHi; // aLo * bHi < 2^63, result < 2^64
            result = times2ToThe32Mod(result, m); // result < m < 2^63
            return plusMod(result, UnsignedLongs.remainder(aLo * bLo /* < 2^64 */, m), m);
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/LongMath.java

            if (result < 0) {
              result = UnsignedLongs.remainder(result, m);
            }
            // result < 2^63 again
            result += aLo * bHi; // aLo * bHi < 2^63, result < 2^64
            result = times2ToThe32Mod(result, m); // result < m < 2^63
            return plusMod(result, UnsignedLongs.remainder(aLo * bLo /* < 2^64 */, m), m);
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. src/math/remainder.go

    // Remainder returns the IEEE 754 floating-point remainder of x/y.
    //
    // Special cases are:
    //
    //	Remainder(±Inf, y) = NaN
    //	Remainder(NaN, y) = NaN
    //	Remainder(x, 0) = NaN
    //	Remainder(x, ±Inf) = x
    //	Remainder(x, NaN) = NaN
    func Remainder(x, y float64) float64 {
    	if haveArchRemainder {
    		return archRemainder(x, y)
    	}
    	return remainder(x, y)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      // CHECK: %[[REMAINDER_0:.*]] = stablehlo.remainder %[[CONSTANT_0]], %[[CONSTANT_1]] : tensor<1024x3xf32>
      // CHECK: %[[REMAINDER_1:.*]] = stablehlo.remainder %[[REMAINDER_0]], %[[CONSTANT_1]] : tensor<1024x3xf32>
      // CHECK: %[[REMAINDER_2:.*]] = stablehlo.remainder %[[REMAINDER_1]], %[[CONSTANT_1]] : tensor<1024x3xf32>
      // CHECK: %[[REMAINDER_3:.*]] = stablehlo.remainder %[[REMAINDER_2]], %[[CONSTANT_1]] : tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix.go

    // ParseOneSocketControlMessage parses a single socket control message from b, returning the message header,
    // message data (a slice of b), and the remainder of b after that single message.
    // When there are no remaining messages, len(remainder) == 0.
    func ParseOneSocketControlMessage(b []byte) (hdr Cmsghdr, data []byte, remainder []byte, err error) {
    	h, dbuf, err := socketControlMessageHeaderAndData(b)
    	if err != nil {
    		return Cmsghdr{}, nil, nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeFactory.java

        default ExcludeSpec fromUnion(Set<ExcludeSpec> remainder) {
            if (remainder.isEmpty()) {
                // It's an intersection, and this method is always called on the remainder
                // of a reduction operation. If the remainder is empty then it means that
                // the intersection is empty
                return nothing();
            }
            return remainder.size() == 1 ? remainder.iterator().next() : anyOf(remainder);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 17:19:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top