Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for processBuffer (0.05 seconds)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                buf.append(t).append(' ');
                if (buf.length() > maxAnalyzedContentLength) {
                    processBuffer(analyzer, field, lang, useReading, tokens, buf, analyzeType, false);
                    buf.setLength(0);
                }
            }
            if (buf.length() > 0) {
                processBuffer(analyzer, field, lang, useReading, tokens, buf, analyzeType, true);
            }
            return tokens;
        }
    
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 14.9K bytes
    - Click Count (0)
Back to Top