- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 139 for manchen (0.07 seconds)
-
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) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java
} Text comment = (Text) firstNode.getFirstChild(); Matcher matcher = ACCESSOR_COMMENT_PATTERN.matcher(comment.getData()); if (matcher.lookingAt()) { String theOrWhether = matcher.group(1).toLowerCase(Locale.US); comment.setData(StringUtils.capitalize(theOrWhether) + " " + comment.getData().substring(matcher.end())); } }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed May 21 06:20:45 GMT 2025 - 29.3K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
inline fun <reified T> inAnyOrder(items: List<T>): Matcher<Iterable<T>> = inAnyOrder(items.toTypedArray()) /** * Matcher checking each item is present exactly once in a given iterable, but an any position, * and that there are no unexpected items. */ private fun <T> inAnyOrder(items: Array<out T>): Matcher<Iterable<T>> = Matchers.containsInAnyOrder(*items)
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 11:30:48 GMT 2026 - 18.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 3.9K bytes - Click Count (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) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 5.2K bytes - Click Count (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. */ @RequiredCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 11.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
// Check field name follows convention assertTrue("Field name should match pattern: " + field.getName(), labelPattern.matcher(field.getName()).matches()); // Check field value follows convention field.setAccessible(true); String value = (String) field.get(null);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
propMap.put(CRAWLER_METADATA_CONTENT_EXCLUDES, patterns); } return !stream(patterns).get(stream -> stream.anyMatch(p -> p.matcher(name).matches())); } String getCrawlerMetadataNameMapping(); default Tuple3<String, String, String> getCrawlerMetadataNameMapping(final String name) { @SuppressWarnings("unchecked")
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0)