- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 153 for manchen (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
* Retrieves related content for a given search query. * First checks for exact term matches, then evaluates regex patterns. * For regex matches, the query placeholder is replaced with the actual query. * * @param query the search query to find related content for * @return array of related content strings, or empty array if no matches found */ public String[] getRelatedContents(final String query) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ParameterUtil.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java
* The query to execute when the term matches. */ @Required @CustomSize(maxKey = "form.admin.max.input.size") public String query; /** * The maximum number of results to return. */ @Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer maxSize; /** * The boost score for matched results. */ @RequiredRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
scriptType = ComponentUtil.getFessConfig().getCrawlerDefaultScript(); } /** * Determines if the given document data matches the configured match expression. * * @param map the document data as a map of field names to values * @return true if the document matches the expression, false otherwise */ public boolean match(final Map<String, Object> map) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java
final Matcher matcher = Pattern.compile(tokenPattern).matcher(content); if (matcher.find()) { if (logger.isDebugEnabled()) { logger.debug("Matched: {}", matcher.group()); } if (matcher.groupCount() > 0) { return matcher.group(1); } } return null; }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
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/helper/VirtualHostHelper.java
}); } /** * Processes virtual host configuration by applying a function to the matched virtual host key. * * @param <T> The return type of the function * @param func The function to apply to the virtual host key * @param defaultValue The default value to return if no virtual host matches * @return The result of applying the function, or the default value */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationTest.java
assertFalse(auth.matches("ftp://hostname:111/")); assertFalse(auth.matches("ftp://hostname:xx/")); assertFalse(auth.matches("ftp://hoge/test/aaa.html")); assertFalse(auth.matches("ftp://hoge/test")); assertFalse(auth.matches("ftp://hoge/")); assertFalse(auth.matches("ftp://hoge")); assertFalse(auth.matches("ftp://")); assertFalse(auth.matches("http://hostname/"));Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 3.8K bytes - Viewed (0)