- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for spaceChars (0.13 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
if (title == null) { return StringUtil.EMPTY; // empty } final int[] spaceChars = getSpaceChars(); try (final Reader reader = new StringReader(title)) { return TextUtil.normalizeText(reader).initialCapacity(title.length()).spaceChars(spaceChars).execute(); } catch (final IOException e) { return StringUtil.EMPTY; // empty } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
final int length = spaceStr.length(); spaceChars = new int[length]; for (int i = 0; i < length; i++) { spaceChars[i] = spaceStr.codePointAt(i); } } propMap.put(key, spaceChars); } return spaceChars; } String getCrawlerDocumentFullstopChars();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0)