- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 692 for charAt (0.08 sec)
-
src/main/java/jcifs/netbios/UniAddress.java
* @param hostname the hostname to check * @return whether this is an IP address */ public static boolean isDotQuadIP(final String hostname) { if (Character.isDigit(hostname.charAt(0))) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = hostname.length(); data = hostname.toCharArray();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
static String unescape(final String str) throws NumberFormatException, UnsupportedEncodingException { char ch; int i, j, state, len; char[] out; final byte[] b = new byte[1]; if (str == null) { return null; } len = str.length(); out = new char[len]; state = 0; for (i = j = 0; i < len; i++) { switch (state) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/message/MessageFormatter.java
if (resourceBundle == null) { return null; } final int length = messageCode.length(); if (length > CODE_NUMBER_LENGTH) { final String key = messageCode.charAt(0) + messageCode.substring(length - CODE_NUMBER_LENGTH); final String pattern = ResourceBundleUtil.getString(resourceBundle, key); if (pattern != null) { return pattern; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
return getByName(hostname, false); } static boolean isDotQuadIP(final String hostname) { if (hostname != null && hostname.length() > 0 && Character.isDigit(hostname.charAt(0))) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = hostname.length(); data = hostname.toCharArray();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CaseFormat.java
return normalizeWord(word); } private static String firstCharOnlyToUpper(String word) { return word.isEmpty() ? word : Ascii.toUpperCase(word.charAt(0)) + Ascii.toLowerCase(word.substring(1)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 6.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/CharSequenceReaderTest.java
// read char by char CharSequenceReader reader = new CharSequenceReader(charSequence); for (int i = 0; i < expected.length(); i++) { assertEquals(expected.charAt(i), reader.read()); } assertFullyRead(reader); // read all to one array reader = new CharSequenceReader(charSequence); char[] buf = new char[expected.length()];
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
final StringBuilder sb = new StringBuilder(); String n = name; // fix MSBROWSE name if (n == null) { n = "null"; } else if (n.charAt(0) == 0x01) { final char c[] = n.toCharArray(); c[0] = '.'; c[1] = '.'; c[14] = '.'; n = new String(c); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
char charA = (i < a.length) ? a[i] : '\0'; char charB = (i < b.length) ? b[i] : '\0'; result &= (charA == charB) ? 1 : 0; } return result == 1; } /** The authentication type */ private AuthenticationType type; /** The authentication domain */ private String domain; /** The username for authentication */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0)