- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 111 for Scharf (0.09 sec)
-
src/main/java/org/codelibs/core/convert/StringConversionUtil.java
/** WAVE DASH */ public static final char WAVE_DASH = '\u301C'; /** FULLWIDTH TILDE */ public static final char FULLWIDTH_TILDE = '\uFF5E'; /** DOUBLE VERTICAL LINE */ public static final char DOUBLE_VERTICAL_LINE = '\u2016'; /** PARALLEL TO */ public static final char PARALLEL_TO = '\u2225'; /** MINUS SIGN */ public static final char MINUS_SIGN = '\u2212';Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
if (length == 0) { return; } final int s = length % 16; final int r = s == 0 ? length / 16 : length / 16 + 1; final char[] c = new char[r * (74 + NL_LENGTH)]; final char[] d = new char[16]; int i; int si = 0; int ci = 0; do { toHexChars(si, c, ci, 5); ci += 5; c[ci] = ':';
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
} /** * Generates the NT password hash for the given password. * This version accepts char[] for better security. * * @param password the password to hash as char array * @return nt password hash */ public static byte[] getNTHash(final char[] password) { if (password == null) { throw new NullPointerException("Password parameter is required");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/util/Hexdump.java
* @return a hexadecimal string representation of the value, padded to the specified size */ public static String toHexString(final int val, final int size) { final char[] c = new char[size]; toHexChars(val, c, 0, size); return new String(c); } /** * Converts a long value to a hexadecimal string representation with specified padding. *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java
String input = "Test" + String.valueOf((char) 0x0020) // space + String.valueOf((char) 0x0009) // tab + String.valueOf((char) 0x000A) // line feed + String.valueOf((char) 0x000D) // carriage return + String.valueOf((char) 0xD7FF) + String.valueOf((char) 0xE000) + String.valueOf((char) 0xFFFD); String result = XmlUtil.stripInvalidXMLCharacters(input);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Encdec.java
*/ public static String dec_utf8(final byte[] src, int si, final int slim) throws IOException { final char[] uni = new char[slim - si]; int ui, ch; for (ui = 0; si < slim && (ch = src[si++] & 0xFF) != 0; ui++) { if (ch < 0x80) { uni[ui] = (char) ch; } else if ((ch & 0xE0) == 0xC0) { if (slim - si < 2) { break;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
} count++; } return value; } static final char[] HEXCHARS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; private static String bin_to_hex(int value, final int length) { final char[] arr = new char[length]; int ai = arr.length; while (ai-- > 0) { arr[ai] = HEXCHARS[value & 0xF];Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UnicodeString.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0)