- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for u002D (0.04 sec)
-
android/guava/src/com/google/common/primitives/Ints.java
} private static final long serialVersionUID = 0; } /** * Parses the specified string as a signed decimal integer value. The ASCII character {@code '-'} * (<code>'\u002D'</code>) is recognized as the minus sign. * * <p>Unlike {@link Integer#parseInt(String)}, this method returns {@code null} instead of
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 31K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
static int digit(char c) { return (c < 128) ? asciiDigits[c] : -1; } } /** * Parses the specified string as a signed decimal long value. The ASCII character {@code '-'} ( * <code>'\u002D'</code>) is recognized as the minus sign. * * <p>Unlike {@link Long#parseLong(String)}, this method returns {@code null} instead of throwing
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 29.3K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Longs.java
static int digit(char c) { return (c < 128) ? asciiDigits[c] : -1; } } /** * Parses the specified string as a signed decimal long value. The ASCII character {@code '-'} ( * <code>'\u002D'</code>) is recognized as the minus sign. * * <p>Unlike {@link Long#parseLong(String)}, this method returns {@code null} instead of throwing
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 29K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Floats.java
} private static final long serialVersionUID = 0; } /** * Parses the specified string as a single-precision floating point value. The ASCII character * {@code '-'} (<code>'\u002D'</code>) is recognized as the minus sign. * * <p>Unlike {@link Float#parseFloat(String)}, this method returns {@code null} instead of
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 25.8K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Doubles.java
return java.util.regex.Pattern .compile(fpPattern); } /** * Parses the specified string as a double-precision floating point value. The ASCII character * {@code '-'} (<code>'\u002D'</code>) is recognized as the minus sign. * * <p>Unlike {@link Double#parseDouble(String)}, this method returns {@code null} instead of
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 27.9K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Floats.java
} private static final long serialVersionUID = 0; } /** * Parses the specified string as a single-precision floating point value. The ASCII character * {@code '-'} (<code>'\u002D'</code>) is recognized as the minus sign. * * <p>Unlike {@link Float#parseFloat(String)}, this method returns {@code null} instead of
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 25.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Doubles.java
return java.util.regex.Pattern .compile(fpPattern); } /** * Parses the specified string as a double-precision floating point value. The ASCII character * {@code '-'} (<code>'\u002D'</code>) is recognized as the minus sign. * * <p>Unlike {@link Double#parseDouble(String)}, this method returns {@code null} instead of
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 28.1K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/ja/mapping.txt
\u0009 => \u0020 \u000A => \u0020 \u000B => \u0020 \u000C => \u0020 \u000D => \u0020 \u001C => \u0020 \u001D => \u0020 \u001E => \u0020 \u001F => \u0020 \u00A0 => \u0020 \u1680 => \u0020 \u180E => \u0020 \u2000 => \u0020 \u2001 => \u0020 \u2002 => \u0020 \u2003 => \u0020 \u2004 => \u0020 \u2005 => \u0020 \u2006 => \u0020 \u2007 => \u0020 \u2008 => \u0020 \u2009 => \u0020 \u200A => \u0020 \u200B => \u0020
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 27 02:07:47 UTC 2023 - 12.3K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/mapping.txt
\u0009 => \u0020 \u000A => \u0020 \u000B => \u0020 \u000C => \u0020 \u000D => \u0020 \u001C => \u0020 \u001D => \u0020 \u001E => \u0020 \u001F => \u0020 \u00A0 => \u0020 \u1680 => \u0020 \u180E => \u0020 \u2000 => \u0020 \u2001 => \u0020 \u2002 => \u0020 \u2003 => \u0020 \u2004 => \u0020 \u2005 => \u0020 \u2006 => \u0020 \u2007 => \u0020 \u2008 => \u0020 \u2009 => \u0020 \u200A => \u0020 \u200B => \u0020
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 27 02:07:47 UTC 2023 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
* StringUtils.isAsciiPrintable("Ceki") = true * StringUtils.isAsciiPrintable("ab2c") = true * StringUtils.isAsciiPrintable("!ab-c~") = true * StringUtils.isAsciiPrintable("\u0020") = true * StringUtils.isAsciiPrintable("\u0021") = true * StringUtils.isAsciiPrintable("\u007e") = true * StringUtils.isAsciiPrintable("\u007f") = false * StringUtils.isAsciiPrintable("Ceki G\u00fclc\u00fc") = false * </pre>
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 21.7K bytes - Viewed (0)