Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for RoundUp (0.16 sec)

  1. src/math/big/ftoa.go

    		// If it's okay to do only one, do it.
    		switch {
    		case okdown && okup:
    			d.round(i + 1)
    			return
    		case okdown:
    			d.roundDown(i + 1)
    			return
    		case okup:
    			d.roundUp(i + 1)
    			return
    		}
    	}
    }
    
    // %e: d.ddddde±dd
    func fmtE(buf []byte, fmt byte, prec int, d decimal) []byte {
    	// first digit
    	ch := byte('0')
    	if len(d.mant) > 0 {
    		ch = d.mant[0]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. src/strconv/ftoa.go

    		// If it's okay to do only one, do it.
    		switch {
    		case okdown && okup:
    			d.Round(mi + 1)
    			return
    		case okdown:
    			d.RoundDown(mi + 1)
    			return
    		case okup:
    			d.RoundUp(mi + 1)
    			return
    		}
    	}
    }
    
    type decimalSlice struct {
    	d      []byte
    	nd, dp int
    }
    
    // %e: -d.ddddde±dd
    func fmtE(dst []byte, neg bool, d decimalSlice, prec int, fmt byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/conversion.go

    		// Moved to defaults
    		// TODO(#18538): We round up resource values to milli scale to maintain API compatibility.
    		// In the future, we should instead reject values that need rounding.
    		// const milliScale = -3
    		// val.RoundUp(milliScale)
    
    		(*out)[core.ResourceName(key)] = val
    	}
    	return nil
    }
    
    func AddFieldLabelConversionsForEvent(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/expand_calls.go

    // the (aligned) old value is returned.
    func (c *registerCursor) next(t *types.Type) registerCursor {
    	c.storeOffset = types.RoundUp(c.storeOffset, t.Alignment())
    	rc := *c
    	c.storeOffset = types.RoundUp(c.storeOffset+t.Size(), t.Alignment())
    	if int(c.nextSlice) < len(c.regs) {
    		w := c.config.NumParamRegs(t)
    		c.nextSlice += Abi1RO(w)
    	}
    	return rc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			got, err := ParseQuantity(item.in)
    			if err != nil {
    				t.Fatalf("unexpected error: %v", err)
    			}
    			expect := item.expect.DeepCopy()
    			if asDec {
    				got.AsDec()
    			}
    			if ok := got.RoundUp(item.scale); ok != item.ok {
    				t.Errorf("%s(%d,%t): unexpected ok: %t", item.in, item.scale, asDec, ok)
    			}
    			if got.Cmp(expect) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	// last byte of that block decrypted to the block size.
    	//
    	// See also macAndPaddingGood logic below.
    	paddingLen &= good
    
    	toRemove = int(paddingLen) + 1
    	return
    }
    
    func roundUp(a, b int) int {
    	return a + (b-a%b)%b
    }
    
    // cbcMode is an interface for block ciphers using cipher block chaining.
    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/func.go

    	if iter.next >= len(iter.closureVars) {
    		return nil, nil, 0
    	}
    	n = iter.closureVars[iter.next]
    	typ = n.Type()
    	if !n.Byval() {
    		typ = types.NewPtr(typ)
    	}
    	iter.next++
    	offset = types.RoundUp(iter.offset, typ.Alignment())
    	iter.offset = offset + typ.Size()
    	return n, typ, offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertFailsWith<EOFException> {
          source.buffer().readByteString(101)
        }
      }
    
      @Test fun blockedStreamDoesntStarveNewStream() {
        val framesThatFillWindow =
          roundUp(Settings.DEFAULT_INITIAL_WINDOW_SIZE, peer.maxOutboundDataLength())
    
        // Write the mocking script. This accepts more data frames than necessary!
        peer.sendFrame().settings(Settings())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	var callArgs []*ssa.Value
    	var callArgTypes []*types.Type
    
    	for _, arg := range args {
    		t := arg.Type
    		off = types.RoundUp(off, t.Alignment())
    		size := t.Size()
    		callArgs = append(callArgs, arg)
    		callArgTypes = append(callArgTypes, t)
    		off += size
    	}
    	off = types.RoundUp(off, int64(types.RegSize))
    
    	// Issue call
    	var call *ssa.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    		// just to avoid performance penalties when loading from
    		// the constant pool across a cache line.
    		c.pool.size = roundUp(c.pool.size, 8)
    	}
    	c.pool.size += uint32(sz)
    	p.Pool = t
    }
    
    // roundUp rounds up x to "to".
    func roundUp(x, to uint32) uint32 {
    	if to == 0 || to&(to-1) != 0 {
    		log.Fatalf("rounded up to a value that is not a power of 2: %d\n", to)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top