- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 423 for digits (0.11 sec)
-
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: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri May 20 12:12:28 UTC 2022 - 10.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt
* * This matches IPv6 addresses as a hex string containing at least one colon, and possibly * including dots after the first colon. It matches IPv4 addresses as strings containing only * decimal digits and dots. This pattern matches strings like "a:.23" and "54" that are neither IP * addresses nor hostnames; they will be verified as IP addresses (which is a more strict * verification). */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 11.2K bytes - Viewed (0) -
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: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
constraints.DecimalMin.message = {item} muss größer ${inclusive == true ? 'oder gleich ' : 'als '}{value} sein. constraints.Digits.message = {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected). constraints.Future.message = {item} muss in der Zukunft liegen. constraints.Max.message = {item} muss kleiner oder gleich {value} sein.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 29 15:01:03 UTC 2019 - 11.8K bytes - Viewed (0) -
src/main/resources/fess_message.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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 12.5K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 12.4K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
* * <p>Unlike {@link Integer#parseInt(String)}, this method returns {@code null} instead of * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits, * and returns {@code null} if non-ASCII digits are present in the string. * * <p>Note that strings prefixed with ASCII {@code '+'} are rejected, even though {@link * Integer#parseInt(String)} accepts them. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 31K bytes - Viewed (0) -
internal/s3select/jstream/decoder.go
var ( c = d.cur() n float64 isFloat bool ) // digits first switch { case c == '0': d.scratch.add(c) c = d.next() case '1' <= c && c <= '9': for ; c >= '0' && c <= '9'; c = d.next() { n = 10*n + float64(c-'0') d.scratch.add(c) } } // . followed by 1 or more digits if c == '.' { isFloat = true d.scratch.add(c)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 13.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
* <ul> * <li>mixing of '<code>-</code>' (hyphen) and '<code>.</code>' (dot) separators,</li> * <li>transition between characters and digits also constitutes a separator: * <code>1.0alpha1 => [1, [alpha, 1]]</code></li> * <li>unlimited number of version components,</li> * <li>version components in the text can be digits or strings,</li> * <li>strings are checked for well-known qualifiers and the qualifier ordering is used for version ordering.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 26K bytes - Viewed (0)