- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for createCacheContent (0.15 sec)
-
src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java
if (doc == null) { saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId)); return redirect(ErrorAction.class); } final String content = viewHelper.createCacheContent(doc, form.hq); if (content == null) { saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId)); return redirect(ErrorAction.class); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
doc.put("url", "http://example.com"); doc.put("cache", "test cache content"); String[] queries = { "test" }; try { String result = viewHelper.createCacheContent(doc, queries); assertTrue(true); } catch (Exception e) { assertTrue(true); } } public void test_getClientIp() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* * @param doc the document data map * @param queries the search queries for highlighting * @return the rendered cache content */ public String createCacheContent(final Map<String, Object> doc, final String[] queries) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)