Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for remainders (0.19 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. 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)
  3. 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)
  4. 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)
  5. maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java

                sb.setLength(0);
                String[] words = S_FILTER.split(line);
                for (String word : words) {
                    if (sb.length() >= remainder - word.length() - (sb.length() > 0 ? 1 : 0)) {
                        repeat(sb, ' ', remainder - sb.length());
                        result.add(BOX_CHAR + " " + sb + " " + BOX_CHAR);
                        sb.setLength(0);
                    }
                    if (sb.length() > 0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 07 20:55:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/runtime/time_windows_arm.s

    	// subtract (10**9 * sec) from nsec to get nanosecond remainder
    	MOVW	$1000000000, R5	// 10**9
    	MULLU	R6,R5,(R9,R8)   // R9:R8 = R7:R6 * R5
    	MULA	R7,R5,R9,R9
    	SUB.S	R8,R1		// R2:R1 -= R9:R8
    	SBC	R9,R2
    
    	// because reciprocal was a truncated repeating fraction, quotient
    	// may be slightly too small -- adjust to make remainder < 10**9
    	CMP	R5,R1	// if remainder > 10**9
    	SUB.HS	R5,R1   //    remainder -= 10**9
    	ADD.HS	$1,R6	//    sec += 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    func (h *mac) Sum(out *[TagSize]byte) {
    	state := h.macState
    	remainder := h.buffer[:h.offset]
    
    	// Use the generic implementation if we have 2 or fewer blocks left
    	// to sum. The vector implementation has a higher startup time.
    	if cpu.S390X.HasVX && len(remainder) > 2*TagSize {
    		updateVX(&state, remainder)
    	} else if len(remainder) > 0 {
    		updateGeneric(&state, remainder)
    	}
    	finalize(out, &state.h, &state.s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int.go

    	// divisor = 10^(dif)
    	// TODO: create loop up table if exp costs too much.
    	divisor.Exp(bigTen, exp.SetInt64(int64(dif)), nil)
    	// reuse exp
    	remainder := exp
    
    	// result = unscaled / divisor
    	// remainder = unscaled % divisor
    	result.DivMod(unscaled, divisor, remainder)
    	if remainder.Sign() != 0 {
    		return result.Int64() + 1
    	}
    
    	return result.Int64()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/Base64.java

            int length = bytes.length;
            if (length == 0) return "";
            StringBuffer buffer =
                    new StringBuffer((int) Math.ceil((double) length / 3d) * 4);
            int remainder = length % 3;
            length -= remainder;
            int block;
            int i = 0;
            while (i < length) {
                block = ((bytes[i++] & 0xff) << 16) | ((bytes[i++] & 0xff) << 8) |
                        (bytes[i++] & 0xff);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

          int positionFloor = (int) LongMath.divide(numerator, scale, RoundingMode.DOWN);
          int remainder = (int) (numerator - positionFloor * scale);
          if (remainder == 0) {
            return dataset[positionFloor];
          } else {
            double positionFrac = (double) remainder / scale;
            return dataset[positionFloor]
                + positionFrac * (dataset[positionFloor + 1] - dataset[positionFloor]);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top