Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 225 for DIGIT (0.04 sec)

  1. pkg/bootstrap/testdata/stats_compression_brotli_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
    - 17.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/strconv/ftoa.go

    		}
    		li := ui - upper.dp + lower.dp
    		l := byte('0') // lower digit
    		if li >= 0 && li < lower.nd {
    			l = lower.d[li]
    		}
    		m := byte('0') // middle digit
    		if mi >= 0 {
    			m = d.d[mi]
    		}
    		u := byte('0') // upper digit
    		if ui < upper.nd {
    			u = upper.d[ui]
    		}
    
    		// Okay to round down (truncate) if lower has a different digit
    		// or if lower is inclusive and is exactly the result of rounding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/math/big/ratconv.go

    // other errors. If sepOk is not set, underscores are not recognized and thus
    // terminate scanning like any other character that is not a valid digit.
    //
    //	exponent = ( "e" | "E" | "p" | "P" ) [ sign ] digits .
    //	sign     = "+" | "-" .
    //	digits   = digit { [ '_' ] digit } .
    //	digit    = "0" ... "9" .
    //
    // A base 2 exponent is only permitted if base2ok is set.
    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. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // The serialization format is:
    //
    // ```
    // <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)
  7. tools/packaging/common/envoy_bootstrap.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
    - 22.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * 1st digit represents the OWNER, 2nd represents the GROUP while the 3rd represents OTHER users.
         * <p>
         * Each of the digits is the sum of its component bits in the binary numeral system.
         * Each of the 3 bits represents a permission.
         * 1st bit is the READ bit, adds 4 to the digit (binary 100).
         * 2nd bit is the WRITE bit, adds 2 to the digit (binary 010).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // The serialization format is:
    //
    // ```
    // <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)
  10. src/unicode/digit_test.go

    		}
    	}
    }
    
    // Test that the special case in IsDigit agrees with the table
    func TestDigitOptimization(t *testing.T) {
    	for i := rune(0); i <= MaxLatin1; i++ {
    		if Is(Digit, i) != IsDigit(i) {
    			t.Errorf("IsDigit(U+%04X) disagrees with Is(Digit)", i)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
Back to top