- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for spaceChars (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* * @param spaceChars an array of integers representing space characters * @return the current instance of TextNormalizeContext for method chaining */ public TextNormalizeContext spaceChars(final int[] spaceChars) { this.spaceChars = spaceChars; return this; } } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
this.maxSymbolTermSize = maxSymbolTermSize; } /** * Sets the space characters. * @param spaceChars The space characters. */ public void setSpaceChars(final int[] spaceChars) { this.spaceChars = spaceChars; } /** * Sets the Tika configuration. * @param tikaConfig The Tika config. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.7K 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) -
src/main/java/jcifs/smb1/util/Hexdump.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0)