Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for spaceChars (2.7 sec)

  1. 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: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top