- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for spaceChars (0.12 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
} public void setMaxSymbolTermSize(final int maxSymbolTermSize) { this.maxSymbolTermSize = maxSymbolTermSize; } public void setSpaceChars(final int[] spaceChars) { this.spaceChars = spaceChars; } public void setTikaConfig(final TikaConfig tikaConfig) { this.tikaConfig = tikaConfig; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25K bytes - Viewed (0)