Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maxSymbolTermSize (0.1 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

             * Sets the maximum size for symbol terms.
             *
             * @param maxSymbolTermSize the maximum size for symbol terms
             * @return the current instance of TextNormalizeContext
             */
            public TextNormalizeContext maxSymbolTermSize(final int maxSymbolTermSize) {
                this.maxSymbolTermSize = maxSymbolTermSize;
                return this;
            }
    
            /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 12K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

        }
    
        /**
         * Sets the maximum size of a symbol term.
         * @param maxSymbolTermSize The max size of a symbol term.
         */
        public void setMaxSymbolTermSize(final int maxSymbolTermSize) {
            this.maxSymbolTermSize = maxSymbolTermSize;
        }
    
        /**
         * Sets the space characters.
         * @param spaceChars The space characters.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 30.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

                        .initialCapacity(content.length())
                        .maxAlphanumTermSize(maxAlphanumTermSize)
                        .maxSymbolTermSize(maxSymbolTermSize)
                        .duplicateTermRemoved(duplicateTermRemoved)
                        .spaceChars(spaceChars)
                        .execute();
            } catch (final IOException e) {
                return StringUtil.EMPTY; // empty
            }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top