Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 225 for DIGIT (0.05 sec)

  1. pkg/bootstrap/testdata/tracing_tls_custom_sni_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
    - 13.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_inclusion_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
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/scanner.go

    	d := '.'  // digit, one of '_', '0' (a digit), or '.' (anything else)
    	i := 0
    
    	// a prefix counts as a digit
    	if len(x) >= 2 && x[0] == '0' {
    		x1 = lower(rune(x[1]))
    		if x1 == 'x' || x1 == 'o' || x1 == 'b' {
    			d = '0'
    			i = 2
    		}
    	}
    
    	// mantissa and exponent
    	for ; i < len(x); i++ {
    		p := d // previous digit
    		d = rune(x[i])
    		switch {
    		case d == '_':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/UnsignedLongs.java

          int digit = Character.digit(string.charAt(pos), radix);
          if (digit == -1) {
            throw new NumberFormatException(string);
          }
          if (pos > maxSafePos && ParseOverflowDetection.overflowInParse(value, digit, radix)) {
            throw new NumberFormatException("Too large for unsigned long: " + string);
          }
          value = (value * radix) + digit;
        }
    
        return value;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/math/cmplx/tan.go

    	// B ~ (z0, z1, z2), such that the product leading digit has the exponent -64.
    	// Note, exp >= 50 since x >= reduceThreshold and exp < 971 for maximum float64.
    	digit, bitshift := uint(exp+64)/64, uint(exp+64)%64
    	z0 := (mPi[digit] << bitshift) | (mPi[digit+1] >> (64 - bitshift))
    	z1 := (mPi[digit+1] << bitshift) | (mPi[digit+2] >> (64 - bitshift))
    	z2 := (mPi[digit+2] << bitshift) | (mPi[digit+3] >> (64 - bitshift))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/all_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
    - 16.6K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/deferred_cluster_creation_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: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. refactorings/CharMatcherRewrite.java

        }
    
        @AfterTemplate
        CharMatcher after() {
          return CharMatcher.ascii();
        }
      }
    
      class Digit {
        @BeforeTemplate
        CharMatcher before() {
          return CharMatcher.DIGIT;
        }
    
        @AfterTemplate
        CharMatcher after() {
          return CharMatcher.digit();
        }
      }
    
      class JavaDigit {
        @BeforeTemplate
        CharMatcher before() {
          return CharMatcher.JAVA_DIGIT;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 28 19:03:28 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  9. src/math/big/floatconv.go

    // prefix and an adjacent digit, and between successive digits; such
    // underscores do not change the value of the number, or the returned
    // digit count. Incorrect placement of underscores is reported as an
    // error if there are no other errors. If base != 0, underscores are
    // not recognized and thus terminate scanning like any other character
    // that is not a valid radix point or digit.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    				rst.fail("unterminated punycode")
    			}
    
    			var digit byte
    			d := encoding[pos]
    			pos++
    			switch {
    			case '0' <= d && d <= '9':
    				digit = d - '0' + 26
    			case 'A' <= d && d <= 'Z':
    				digit = d - 'A'
    			case 'a' <= d && d <= 'z':
    				digit = d - 'a'
    			default:
    				rst.fail("invalid punycode digit")
    			}
    
    			i += int(digit) * w
    			if i < 0 {
    				rst.fail("punycode number overflow")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top