- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for sdh (0.56 sec)
-
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
/** * Encodes a string for similar document hash processing. * * @param input the string to encode * @return encoded string, or the original input if blank */ public static String sdh(final String input) { if (StringUtil.isBlank(input)) { return input; } return ComponentUtil.getDocumentHelper().encodeSimilarDocHash(input); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
public SearchRequestType getType() { return SearchRequestType.JSON; } @Override public String getSimilarDocHash() { return request.getParameter("sdh"); } @Override public HighlightInfo getHighlightInfo() { return ComponentUtil.getViewHelper().createHighlightInfo(); } } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 55.4K bytes - Viewed (1)