Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 225 for DIGIT (0.07 sec)

  1. guava/src/com/google/common/primitives/Longs.java

          return null;
        }
        int digit = AsciiDigits.digit(string.charAt(index++));
        if (digit < 0 || digit >= radix) {
          return null;
        }
        long accum = -digit;
    
        long cap = Long.MIN_VALUE / radix;
    
        while (index < string.length()) {
          digit = AsciiDigits.digit(string.charAt(index++));
          if (digit < 0 || digit >= radix || accum < cap) {
            return null;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1F106         ; disallowed_STD3_mapped ; 0035 002C     # 5.2  DIGIT FIVE COMMA
    1F107         ; disallowed_STD3_mapped ; 0036 002C     # 5.2  DIGIT SIX COMMA
    1F108         ; disallowed_STD3_mapped ; 0037 002C     # 5.2  DIGIT SEVEN COMMA
    1F109         ; disallowed_STD3_mapped ; 0038 002C     # 5.2  DIGIT EIGHT COMMA
    1F10A         ; disallowed_STD3_mapped ; 0039 002C     # 5.2  DIGIT NINE COMMA
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  3. src/math/big/ftoa.go

    		u := upper.at(i)
    
    		// Okay to round down (truncate) if lower has a different digit
    		// or if lower is inclusive and is exactly the result of rounding
    		// down (i.e., and we have reached the final digit of lower).
    		okdown := l != m || inclusive && i+1 == len(lower.mant)
    
    		// Okay to round up if upper has a different digit and either upper
    		// is inclusive or upper is bigger than the result of rounding up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. src/unicode/example_test.go

    	const mixed = "\b5Ὂg̀9! ℃ᾭG"
    	for _, c := range mixed {
    		fmt.Printf("For %q:\n", c)
    		if unicode.IsControl(c) {
    			fmt.Println("\tis control rune")
    		}
    		if unicode.IsDigit(c) {
    			fmt.Println("\tis digit rune")
    		}
    		if unicode.IsGraphic(c) {
    			fmt.Println("\tis graphic rune")
    		}
    		if unicode.IsLetter(c) {
    			fmt.Println("\tis letter rune")
    		}
    		if unicode.IsLower(c) {
    			fmt.Println("\tis lower case rune")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/UrlEscapers.java

       *   <li>All other characters are converted into one or more bytes using UTF-8 encoding and each
       *       byte is then represented by the 3-character string "%XY", where "XY" is the two-digit,
       *       uppercase, hexadecimal representation of the byte value.
       * </ul>
       *
       * <p>This escaper is suitable for escaping parameter names and values even when <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:04:33 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

            Pattern kebabCasePattern = getKebabCasePatternForName(pattern);
            Pattern kebabCasePrefixPattern = Pattern.compile(kebabCasePattern.pattern() + "[\\p{javaLowerCase}\\p{Digit}-]*");
    
            Set<String> caseInsensitiveMatches = new TreeSet<>();
            Set<String> caseSensitiveCamelCaseMatches = new TreeSet<>();
            Set<String> caseInsensitiveCamelCaseMatches = new TreeSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/UrlEscapers.java

       *   <li>All other characters are converted into one or more bytes using UTF-8 encoding and each
       *       byte is then represented by the 3-character string "%XY", where "XY" is the two-digit,
       *       uppercase, hexadecimal representation of the byte value.
       * </ul>
       *
       * <p>This escaper is suitable for escaping parameter names and values even when <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:04:33 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  8. src/text/scanner/scanner_test.go

    	testScanSelectedMode(t, ScanComments, Comment)
    }
    
    func TestScanCustomIdent(t *testing.T) {
    	const src = "faab12345 a12b123 a12 3b"
    	s := new(Scanner).Init(strings.NewReader(src))
    	// ident = ( 'a' | 'b' ) { digit } .
    	// digit = '0' .. '3' .
    	// with a maximum length of 4
    	s.IsIdentRune = func(ch rune, i int) bool {
    		return i == 0 && (ch == 'a' || ch == 'b') || 0 < i && i < 4 && '0' <= ch && ch <= '3'
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/util/internal/NameMatcher.java

            Pattern kebabCasePattern = getKebabCasePatternForName(pattern);
            Pattern kebabCasePrefixPattern = Pattern.compile(kebabCasePattern.pattern() + "[\\p{javaLowerCase}\\p{Digit}-]*");
    
            Set<String> caseInsensitiveMatches = new TreeSet<>();
            Set<String> caseSensitiveCamelCaseMatches = new TreeSet<>();
            Set<String> caseInsensitiveCamelCaseMatches = new TreeSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_en.properties

    constraints.LuhnCheck.message               = The check digit for ${value} is invalid, Luhn Modulo 10 checksum failed.
    constraints.Mod10Check.message              = The check digit for ${value} is invalid, Modulo 10 checksum failed.
    constraints.Mod11Check.message              = The check digit for ${value} is invalid, Modulo 11 checksum failed.
    constraints.ModCheck.message                = The check digit for ${value} is invalid, ${modType} checksum failed.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top