Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for zerorange (0.26 sec)

  1. src/strconv/atof.go

    //
    // If s is syntactically well-formed but is more than 1/2 ULP
    // away from the largest floating point number of the given size,
    // ParseFloat returns f = ±Inf, err.Err = ErrRange.
    //
    // ParseFloat recognizes the string "NaN", and the (possibly signed) strings "Inf" and "Infinity"
    // as their respective special floating point values. It ignores case when matching.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    			}
    			// Add more other SDK related errors here if any in future.
    		default:
    			//nolint:gocritic
    			if errors.Is(err, errMalformedEncoding) || errors.Is(err, errChunkTooBig) || errors.Is(err, strconv.ErrRange) {
    				apiErr = APIError{
    					Code:           "BadRequest",
    					Description:    err.Error(),
    					HTTPStatusCode: http.StatusBadRequest,
    				}
    			} else {
    				apiErr = APIError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    			goto Error
    		}
    
    		if n >= cutoff {
    			// n*base overflows
    			n = 1<<64 - 1
    			err = strconv.ErrRange
    			goto Error
    		}
    		n *= uint64(base)
    
    		n1 := n + uint64(v)
    		if n1 < n || n1 > maxVal {
    			// n+v overflows
    			n = 1<<64 - 1
    			err = strconv.ErrRange
    			goto Error
    		}
    		n = n1
    	}
    
    	return n, nil
    
    Error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"AppendQuoteRuneToGraphic", Func, 6},
    		{"AppendQuoteToASCII", Func, 0},
    		{"AppendQuoteToGraphic", Func, 6},
    		{"AppendUint", Func, 0},
    		{"Atoi", Func, 0},
    		{"CanBackquote", Func, 0},
    		{"ErrRange", Var, 0},
    		{"ErrSyntax", Var, 0},
    		{"FormatBool", Func, 0},
    		{"FormatComplex", Func, 15},
    		{"FormatFloat", Func, 0},
    		{"FormatInt", Func, 0},
    		{"FormatUint", Func, 0},
    		{"IntSize", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg strconv, type NumError struct
    pkg strconv, type NumError struct, Err error
    pkg strconv, type NumError struct, Func string
    pkg strconv, type NumError struct, Num string
    pkg strconv, var ErrRange error
    pkg strconv, var ErrSyntax error
    pkg strings, func Contains(string, string) bool
    pkg strings, func ContainsAny(string, string) bool
    pkg strings, func ContainsRune(string, int32) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top