- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getFragmentSize (1.11 sec)
-
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
this.type = type; return this; } /** * Gets the fragment size. * * @return the fragment size in characters */ public int getFragmentSize() { return fragmentSize; } /** * Sets the fragment size with fluent interface. * * @param fragmentSize the fragment size in charactersRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
float ratio = (float) width / (float) TABLET_WIDTH; if (ratio < 0.5) { ratio = 0.5f; } highlightInfo.fragmentSize((int) (highlightInfo.getFragmentSize() * ratio)); } } /** * Gets the URL link for a document with proper protocol handling. * Handles file, SMB, FTP, and HTTP protocols. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
final FessConfig fessConfig) { final String highlighterType = highlightInfo.getType(); final int fragmentSize = highlightInfo.getFragmentSize(); final int numOfFragments = highlightInfo.getNumOfFragments(); final int fragmentOffset = highlightInfo.getFragmentOffset();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1)