Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for unrepresentable (0.18 sec)

  1. src/net/http/cookiejar/jar.go

    	errMalformedDomain = errors.New("cookiejar: malformed cookie domain attribute")
    )
    
    // endOfTime is the time when session (non-persistent) cookies expire.
    // This instant is representable in most date/time formats (not just
    // Go's time.Time) and should be far enough in the future.
    var endOfTime = time.Date(9999, 12, 31, 23, 59, 59, 0, time.UTC)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		amount.SetUnscaledBig(ub.Mul(ub, numericSuffix))
    	}
    
    	// Cap at min/max bounds.
    	sign := amount.Sign()
    	if sign == -1 {
    		amount.Neg(amount)
    	}
    
    	// This rounds non-zero values up to the minimum representable value, under the theory that
    	// if you want some resources, you should get some resources, even if you asked for way too small
    	// of an amount.  Arguably, this should be inf.RoundHalfUp (normal rounding), but that would have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. src/go/types/stmt.go

    		return bad("no core type")
    	case *Basic:
    		if isString(typ) {
    			return Typ[Int], universeRune, "", false, true // use 'rune' name
    		}
    		if isInteger(typ) {
    			// untyped numeric constants may be representable as integer values
    			if allowVersion != nil && !allowVersion(go1_22) {
    				return bad("requires go1.22 or later")
    			}
    			return orig, nil, "", false, true
    		}
    	case *Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// See issue 36399 and 36400.
    	// Encodings of +inf, -inf, and -0 are fine.
    	{name: "Const32F", aux: "Float32"}, // value is math.Float64frombits(uint64(auxint)) and is exactly representable as float 32
    	{name: "Const64F", aux: "Float64"}, // value is math.Float64frombits(uint64(auxint))
    	{name: "ConstInterface"},           // nil interface
    	{name: "ConstSlice"},               // nil slice
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top