Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for udigits (0.26 sec)

  1. src/fmt/print.go

    	case 'b':
    		p.fmt.fmtInteger(v, 2, isSigned, verb, ldigits)
    	case 'o', 'O':
    		p.fmt.fmtInteger(v, 8, isSigned, verb, ldigits)
    	case 'x':
    		p.fmt.fmtInteger(v, 16, isSigned, verb, ldigits)
    	case 'X':
    		p.fmt.fmtInteger(v, 16, isSigned, verb, udigits)
    	case 'c':
    		p.fmt.fmtC(v)
    	case 'q':
    		p.fmt.fmtQc(v)
    	case 'U':
    		p.fmt.fmtUnicode(v)
    	default:
    		p.badVerb(verb)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. src/regexp/syntax/doc.go

    	\pF            Unicode character class F (one-letter name)
    
    Named character classes as character class elements:
    
    	[\d]           digits (== \d)
    	[^\d]          not digits (== \D)
    	[\D]           not digits (== \D)
    	[^\D]          not not digits (== \d)
    	[[:name:]]     named ASCII class inside character class (== [:name:])
    	[^[:name:]]    named ASCII class inside negated character class (== [:^name:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/math/big/natdiv.go

    The first step divides n digits by n digits to ensure that it produces only a
    single digit.
    
    Each subsequent step appends the next digit from u to the remainder and divides
    those n+1 digits by the n digits of v, producing another quotient digit and a
    new n-digit remainder.
    
    Subsequent steps divide n+1 digits by n digits, an operation that in general
    might produce two digits. However, as used in the algorithm, that division is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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/fmt/scan.go

    func (s *ss) getBase(verb rune) (base int, digits string) {
    	s.okVerb(verb, "bdoUxXv", "integer") // sets s.err
    	base = 10
    	digits = decimalDigits
    	switch verb {
    	case 'b':
    		base = 2
    		digits = binaryDigits
    	case 'o':
    		base = 8
    		digits = octalDigits
    	case 'x', 'X', 'U':
    		base = 16
    		digits = hexadecimalDigits
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  8. src/regexp/syntax/perl_groups.go

    	`[:space:]`:   {+1, code14},
    	`[:^space:]`:  {-1, code14},
    	`[:upper:]`:   {+1, code15},
    	`[:^upper:]`:  {-1, code15},
    	`[:word:]`:    {+1, code16},
    	`[:^word:]`:   {-1, code16},
    	`[:xdigit:]`:  {+1, code17},
    	`[:^xdigit:]`: {-1, code17},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/strconv/atoi.go

    		i = 2
    		saw = '0' // base prefix counts as a digit for "underscore as digit separator"
    		hex = lower(s[1]) == 'x'
    	}
    
    	// Number proper.
    	for ; i < len(s); i++ {
    		// Digits are always okay.
    		if '0' <= s[i] && s[i] <= '9' || hex && 'a' <= lower(s[i]) && lower(s[i]) <= 'f' {
    			saw = '0'
    			continue
    		}
    		// Underscore must follow digit.
    		if s[i] == '_' {
    			if saw != '0' {
    				return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/time/format.go

    		case stdFracSecond0:
    			// stdFracSecond0 requires the exact number of digits as specified in
    			// the layout.
    			ndigit := 1 + digitsLen(std)
    			if len(value) < ndigit {
    				err = errBad
    				break
    			}
    			nsec, rangeErrString, err = parseNanoseconds(value, ndigit)
    			value = value[ndigit:]
    
    		case stdFracSecond9:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top