Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 399 for udigits (0.17 sec)

  1. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // ```
    // <quantity>        ::= <signedNumber><suffix>
    //
    // 	(Note that <suffix> may be empty, from the "" case in <decimalSI>.)
    //
    // <digit>           ::= 0 | 1 | ... | 9
    // <digits>          ::= <digit> | <digit><digits>
    // <number>          ::= <digits> | <digits>.<digits> | <digits>. | .<digits>
    // <sign>            ::= "+" | "-"
    // <signedNumber>    ::= <number> | <sign><number>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // ```
    // <quantity>        ::= <signedNumber><suffix>
    //
    // 	(Note that <suffix> may be empty, from the "" case in <decimalSI>.)
    //
    // <digit>           ::= 0 | 1 | ... | 9
    // <digits>          ::= <digit> | <digit><digits>
    // <number>          ::= <digits> | <digits>.<digits> | <digits>. | .<digits>
    // <sign>            ::= "+" | "-"
    // <signedNumber>    ::= <number> | <sign><number>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. src/math/big/floatconv.go

    //	prefix    = "0" [ "b" | "B" | "o" | "O" | "x" | "X" ] .
    //	mantissa  = digits "." [ digits ] | digits | "." digits .
    //	pmantissa = [ "_" ] digits "." [ digits ] | [ "_" ] digits | "." digits .
    //	exponent  = ( "e" | "E" | "p" | "P" ) [ sign ] digits .
    //	digits    = digit { [ "_" ] digit } .
    //	digit     = "0" ... "9" | "a" ... "z" | "A" ... "Z" .
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. src/strconv/itoa.go

    // as the second result value.
    func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {
    	if base < 2 || base > len(digits) {
    		panic("strconv: illegal AppendInt/FormatInt base")
    	}
    	// 2 <= base && base <= len(digits)
    
    	var a [64 + 1]byte // +1 for sign of 64bit value in base 2
    	i := len(a)
    
    	if neg {
    		u = -u
    	}
    
    	// convert bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/math/big/ratconv.go

    		return 0, 10, nil
    	}
    
    	// sign
    	var digits []byte
    	ch, err = r.ReadByte()
    	if err == nil && (ch == '+' || ch == '-') {
    		if ch == '-' {
    			digits = append(digits, '-')
    		}
    		ch, err = r.ReadByte()
    	}
    
    	// prev encodes the previously seen char: it is one
    	// of '_', '0' (a digit), or '.' (anything else). A
    	// valid separator '_' may only occur after a digit.
    	prev := '.'
    	invalSep := false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/strconv/ftoa.go

    			prec = digs.nd
    		}
    	} else if fmt != 'f' {
    		// Fixed number of digits.
    		digits := prec
    		switch fmt {
    		case 'e', 'E':
    			digits++
    		case 'g', 'G':
    			if prec == 0 {
    				prec = 1
    			}
    			digits = prec
    		default:
    			// Invalid mode.
    			digits = 1
    		}
    		var buf [24]byte
    		if bitSize == 32 && digits <= 9 {
    			digs.d = buf[:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner_test.go

    		{IntLit, "0o60___0", "0o60___0", "'_' must separate successive digits"},
    		{IntLit, "0466_", "0466_", "'_' must separate successive digits"},
    		{FloatLit, "1_.", "1_.", "'_' must separate successive digits"},
    		{FloatLit, "0._1", "0._1", "'_' must separate successive digits"},
    		{FloatLit, "2.7_e0", "2.7_e0", "'_' must separate successive digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner.go

    // digits accepts the sequence { digit | '_' }.
    // If base <= 10, digits accepts any decimal digit but records
    // the index (relative to the literal start) of a digit >= base
    // in *invalid, if *invalid < 0.
    // digits returns a bitset describing whether the sequence contained
    // digits (bit 0 is set), or separators '_' (bit 1 is set).
    func (s *scanner) digits(base int, invalid *int) (digsep int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  9. src/text/scanner/scanner_test.go

    		{Int, "0b__1000", "0b__1000", "'_' must separate successive digits"},
    		{Int, "0o60___0", "0o60___0", "'_' must separate successive digits"},
    		{Int, "0466_", "0466_", "'_' must separate successive digits"},
    		{Float, "1_.", "1_.", "'_' must separate successive digits"},
    		{Float, "0._1", "0._1", "'_' must separate successive digits"},
    		{Float, "2.7_e0", "2.7_e0", "'_' must separate successive digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  10. src/math/big/ftoa.go

    // unrecognized format character.
    //
    // The precision prec controls the number of digits (excluding the exponent)
    // printed by the 'e', 'E', 'f', 'g', 'G', and 'x' formats.
    // For 'e', 'E', 'f', and 'x', it is the number of digits after the decimal point.
    // For 'g' and 'G' it is the total number of digits. A negative precision selects
    // the smallest number of decimal digits necessary to identify the value x uniquely
    // using x.Prec() mantissa bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top