- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for sdh (0.57 sec)
-
src/main/webapp/WEB-INF/view/searchResults.jsp
</li> </c:forEach> <c:if test="${existNextPage}"> <li class="page-item"><la:link styleClass="page-link" aria-label="Next"Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 9.2K bytes - Viewed (0) -
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)