Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for DIGIT (0.11 sec)

  1. src/unicode/digit.go

    // license that can be found in the LICENSE file.
    
    package unicode
    
    // IsDigit reports whether the rune is a decimal digit.
    func IsDigit(r rune) bool {
    	if r <= MaxLatin1 {
    		return '0' <= r && r <= '9'
    	}
    	return isExcludingLatin(Digit, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 352 bytes
    - Viewed (0)
  2. src/net/http/cookiejar/punycode.go

    			delta = 0
    			h++
    			remaining--
    		}
    		delta++
    		n++
    	}
    	return string(output), nil
    }
    
    func encodeDigit(digit int32) byte {
    	switch {
    	case 0 <= digit && digit < 26:
    		return byte(digit + 'a')
    	case 26 <= digit && digit < 36:
    		return byte(digit + ('0' - 26))
    	}
    	panic("cookiejar: internal error in punycode encoding")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/punycode.go

    }
    
    func decodeDigit(x byte) (digit int32, ok bool) {
    	switch {
    	case '0' <= x && x <= '9':
    		return int32(x - ('0' - 26)), true
    	case 'A' <= x && x <= 'Z':
    		return int32(x - 'A'), true
    	case 'a' <= x && x <= 'z':
    		return int32(x - 'a'), true
    	}
    	return 0, false
    }
    
    func encodeDigit(digit int32) byte {
    	switch {
    	case 0 <= digit && digit < 26:
    		return byte(digit + 'a')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    For a 2n-by-n-digit division, this algorithm runs a 4-by-2 long division over
    wide digits, producing two wide digits plus a possible leading regular digit 1,
    which can be handled without a recursive call. That is, the algorithm uses two
    full iterations, each using an n-by-n/2-digit division and an n/2-by-n/2-digit
    multiplication, along with a few n-digit additions and subtractions. The standard
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. src/math/big/natconv.go

    // that is not a valid radix point or digit.
    //
    //	number    = mantissa | prefix pmantissa .
    //	prefix    = "0" [ "b" | "B" | "o" | "O" | "x" | "X" ] .
    //	mantissa  = digits "." [ digits ] | digits | "." digits .
    //	pmantissa = [ "_" ] digits "." [ digits ] | [ "_" ] digits | "." digits .
    //	digits    = digit { [ "_" ] digit } .
    //	digit     = "0" ... "9" | "a" ... "z" | "A" ... "Z" .
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  6. test/fibo.go

    	const W2 = W / 2         // half-digit size in bits
    	const M2 = (1 << W2) - 1 // lower half-digit mask
    
    	z = z.make(m + 1)
    	var c big.Word
    	for i := 0; i < n; i++ {
    		// lower half-digit
    		c += x[i]&M2 + y[i]&M2
    		d := c & M2
    		c >>= W2
    		// upper half-digit
    		c += x[i]>>W2 + y[i]>>W2
    		z[i] = c<<W2 | d
    		c >>= W2
    	}
    	for i := n; i < m; i++ {
    		// lower half-digit
    		c += x[i] & M2
    		d := c & M2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 08 22:22:58 UTC 2014
    - 6.3K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/tracing_zipkin_golden.json

            "regex": "^listener(?=\\.).*?\\.http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
            "tag_name": "http_conn_manager_prefix",
            "regex": "^http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
            "tag_name": "listener_address",
            "regex": "^listener\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_opencensusagent_golden.json

            "regex": "^listener(?=\\.).*?\\.http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
            "tag_name": "http_conn_manager_prefix",
            "regex": "^http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
            "tag_name": "listener_address",
            "regex": "^listener\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/auth_golden.json

            "regex": "^listener(?=\\.).*?\\.http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
            "tag_name": "http_conn_manager_prefix",
            "regex": "^http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
            "tag_name": "listener_address",
            "regex": "^listener\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/lrs_golden.json

            "regex": "^listener(?=\\.).*?\\.http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
            "tag_name": "http_conn_manager_prefix",
            "regex": "^http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
            "tag_name": "listener_address",
            "regex": "^listener\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)"
          },
          {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top