- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for spaceChars (0.12 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
this.duplicateTermRemoved = duplicateTermRemoved; return this; } public TextNormalizeContext spaceChars(final int[] spaceChars) { this.spaceChars = spaceChars; return this; } } public static TextNormalizeContext normalizeText(final Reader reader) { return new TextNormalizeContext(reader);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 7.9K 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 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) -
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 Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.4K bytes - Viewed (0)