Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ALPHANUM (0.12 sec)

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

                            if (duplicateTermRemoved && symbolSize > 0) {
                                isSpace = removeLastDuplication(buf, symbolSize, isSpace, termCache);
                            }
                            // alphanum
                            if (maxAlphanumTermSize >= 0) {
                                if (alphanumSize < maxAlphanumTermSize) {
                                    buf.appendCodePoint(c);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 12K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java

                            continue;
                        }
    
                        TestAnalyzeToken token = new TestAnalyzeToken(word, position++, startOffset, endOffset, 1, // positionIncrement
                                "<ALPHANUM>", Collections.emptyMap());
                        tokens.add(token);
                        offset = endOffset;
                    }
                }
    
                return tokens;
            }
    
            @Override
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    crawler.document.append.data=true
    # Whether to append filename to documents.
    crawler.document.append.filename=false
    # Maximum size of alphanumeric terms in documents.
    crawler.document.max.alphanum.term.size=20
    # Maximum size of symbol terms in documents.
    crawler.document.max.symbol.term.size=10
    # Whether to remove duplicate terms in documents.
    crawler.document.duplicate.term.removed=false
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String CRAWLER_DOCUMENT_APPEND_FILENAME = "crawler.document.append.filename";
    
        /** The key of the configuration. e.g. 20 */
        String CRAWLER_DOCUMENT_MAX_ALPHANUM_TERM_SIZE = "crawler.document.max.alphanum.term.size";
    
        /** The key of the configuration. e.g. 10 */
        String CRAWLER_DOCUMENT_MAX_SYMBOL_TERM_SIZE = "crawler.document.max.symbol.term.size";
    
        /** The key of the configuration. e.g. false */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (2)
Back to top