Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Digit (0.09 sec)

  1. 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: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 3.9K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_ru.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: 2025-05-26 08:04
    - Last Modified: 2022-05-20 12:12
    - 10.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/opensearch/extension/analysis/CharTypeFilterFactory.java

        private final boolean digit;
    
        private final boolean letter;
    
        public CharTypeFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name,
                final Settings settings) {
            super(indexSettings, name, settings);
    
            alphabetic = settings.getAsBoolean("alphabetic", true);
            digit = settings.getAsBoolean("digit", true);
    Registered: 2025-06-06 09:08
    - Last Modified: 2025-03-15 06:51
    - 1.7K bytes
    - Viewed (0)
  4. 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: 2025-05-30 12:43
    - Last Modified: 2018-03-28 19:03
    - 3.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/InetAddresses.java

          throw new NumberFormatException();
        }
        int octet = 0;
        for (int i = start; i < end; i++) {
          octet *= 10;
          int digit = Character.digit(ipString.charAt(i), 10);
          if (digit < 0) {
            throw new NumberFormatException();
          }
          octet += digit;
        }
        if (octet > 255) {
          throw new NumberFormatException();
        }
        return (byte) octet;
      }
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-19 21:24
    - 47.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/InetAddresses.java

          throw new NumberFormatException();
        }
        int octet = 0;
        for (int i = start; i < end; i++) {
          octet *= 10;
          int digit = Character.digit(ipString.charAt(i), 10);
          if (digit < 0) {
            throw new NumberFormatException();
          }
          octet += digit;
        }
        if (octet > 255) {
          throw new NumberFormatException();
        }
        return (byte) octet;
      }
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-19 21:24
    - 47.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/Hashing.java

       *     #murmur3_32_fixed(int)} instead.
       */
      @Deprecated
      @SuppressWarnings("IdentifierName") // the best we could do for adjacent digit blocks
      public static HashFunction murmur3_32(int seed) {
        return new Murmur3_32HashFunction(seed, /* supplementaryPlaneFix= */ false);
      }
    
      /**
       * Returns a hash function implementing the <a
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-28 02:48
    - 29.8K bytes
    - Viewed (0)
  8. 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: 2025-05-30 11:42
    - Last Modified: 2024-02-10 11:25
    - 854.1K bytes
    - Viewed (0)
  9. android/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: 2025-05-30 12:43
    - Last Modified: 2025-04-14 16:36
    - 29.1K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/Punycode.kt

            if (pos == limit) return false // Malformed.
            val c = string[pos++]
            val digit =
              when (c) {
                in 'a'..'z' -> c - 'a'
                in 'A'..'Z' -> c - 'A'
                in '0'..'9' -> c - '0' + 26
                else -> return false // Malformed.
              }
            val deltaI = digit * w
            if (i > Int.MAX_VALUE - deltaI) return false // Prevent overflow.
            i += deltaI
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 8.5K bytes
    - Viewed (0)
Back to top