- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for keymatch (0.12 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/KeyMatchDbm.java
setupEpg(_epgMap, et -> ((KeyMatch) et).getMaxSize(), (et, vl) -> ((KeyMatch) et).setMaxSize(DfTypeUtil.toInteger(vl)), "maxSize"); setupEpg(_epgMap, et -> ((KeyMatch) et).getQuery(), (et, vl) -> ((KeyMatch) et).setQuery(DfTypeUtil.toString(vl)), "query"); setupEpg(_epgMap, et -> ((KeyMatch) et).getTerm(), (et, vl) -> ((KeyMatch) et).setTerm(DfTypeUtil.toString(vl)), "term");
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
* Retrieves a list of boosted documents for the specified KeyMatch. * * @param keyMatch The KeyMatch instance. * @return A list of boosted documents. */ public List<Map<String, Object>> getBoostedDocumentList(final KeyMatch keyMatch) { final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient(); String virtualHost = keyMatch.getVirtualHost();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
* @param currentTime the current time * @return optional key match entity */ public static OptionalEntity<KeyMatch> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new KeyMatch()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /admin/keymatch/admin_keymatch.jsp */ HtmlNext path_AdminKeymatch_AdminKeymatchJsp = new HtmlNext("/admin/keymatch/admin_keymatch.jsp"); /** The path of the HTML: /admin/keymatch/admin_keymatch_details.jsp */ HtmlNext path_AdminKeymatch_AdminKeymatchDetailsJsp = new HtmlNext("/admin/keymatch/admin_keymatch_details.jsp");Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
</a></li></c:if> <c:if test="${fe:permission('admin-keymatch-view')}"> <li class="nav-item"> <a href="${fe:url('/admin/keymatch/')}" class="nav-link <c:if test="${param.menuType=='keyMatch'}">active</c:if>" <c:if test="${param.menuType=='keyMatch'}">aria-current="page"</c:if>> <i class='fa fa-genderless nav-icon' aria-hidden="true"></i>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java
import org.codelibs.fess.app.web.admin.general.AdminGeneralAction; import org.codelibs.fess.app.web.admin.group.AdminGroupAction; import org.codelibs.fess.app.web.admin.joblog.AdminJoblogAction; import org.codelibs.fess.app.web.admin.keymatch.AdminKeymatchAction; import org.codelibs.fess.app.web.admin.labeltype.AdminLabeltypeAction; import org.codelibs.fess.app.web.admin.log.AdminLogAction; import org.codelibs.fess.app.web.admin.maintenance.AdminMaintenanceAction;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
updateConfigListenerMap.put("RelatedQuery", () -> Integer.toString(ComponentUtil.getRelatedQueryHelper().load())); updateConfigListenerMap.put("KeyMatch", () -> Integer.toString(ComponentUtil.getKeyMatchHelper().load())); } /** * Parses project properties from the given path. * * @param propPath The path to the project properties file.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
return false; } if (Arrays.stream(webProtocols).anyMatch(p -> s.startsWith(p))) { return web; } if (Arrays.stream(fileProtocols).anyMatch(p -> s.startsWith(p))) { return file; } return true;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
* @return true if the URL starts with a supported web protocol, false otherwise */ public boolean isValidWebProtocol(final String url) { return stream(webProtocols).get(stream -> stream.anyMatch(s -> url.startsWith(s))); } /** * Checks if the given URL uses a valid file protocol. * * @param url the URL to validateRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 12.4K bytes - Viewed (1) -
src/main/resources/esclient.xml
</postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.job_log/job_log"</arg> </postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.key_match/key_match"</arg> </postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.label_type/label_type"</arg> </postConstruct> <postConstruct name="addIndexConfig">
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 06 13:45:02 UTC 2024 - 16K bytes - Viewed (0)