- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 480 for match1 (0.07 seconds)
-
src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java
// Verify escaped pattern matches assertTrue("Escaped pattern should match: " + mimeType, Pattern.compile(escapedPattern).matcher(mimeType).matches()); // Verify unescaped pattern does NOT match assertFalse("Unescaped pattern should NOT match: " + mimeType, Pattern.compile(mimeType).matcher(mimeType).matches()); } } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 8.7K bytes - Click Count (0) -
src/main/webapp/js/admin/moment-with-locales.min.js.map
ber","value","isFinite","makeGetSet","keepTime","set$1","get","month","date","daysInMonth","regexes","match1","match2","match3","match4","match6","match1to2","match3to4","match5to6","match1to3","match1to4","match1to6","matchUnsigned","matchSigned","matchOffset","matchShortOffset","matchWord","addRegexToken","regex","strictRegex","isStrict","getParseRegexForToken","RegExp","regexEscape","matched","p1","p2","p3","p4","s","tokens","addParseToken","addWeekParseToken","_w","indexOf","YEAR","MONTH","D...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 224.8K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 04:23:08 GMT 2025 - 7.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
} /** * Gets the current match expression. * * @return the match expression string */ public String getMatchExpression() { return matchExpression; } /** * Sets the match expression used to determine if documents should be boosted. * * @param expression the match expression string */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/dict/DictionaryCreator.java
} /** * Checks if the given path matches this creator's pattern. * * @param path the file path to check * @return true if the path matches the pattern, false otherwise */ protected boolean isTarget(final String path) { return pattern.matcher(path).find(); } /** * Creates a new dictionary file instance for the given parameters.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
} /** * Matches the given path. * * @param path The path to match. * @return True if the path matches, otherwise false. */ public boolean match(final String path) { if (includedPaths == null) { if (excludedPaths != null && excludedPaths.matcher(path).matches()) { if (logger.isDebugEnabled()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.8K bytes - Click Count (0) -
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) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
} /** * Get a key match. * * @param id The ID of the key match. * @return An optional entity of the key match. */ public OptionalEntity<KeyMatch> getKeyMatch(final String id) { return keyMatchBhv.selectByPK(id); } /** * Store a key match. * * @param keyMatch The key match to store. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/EditForm.java
super(); } /** * The unique identifier of the key match configuration being edited. * This is a required field for identifying which key match to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this key match configuration. * Used for audit trail purposes to track who made changes.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
* provided in the {@code paramMap}. If the {@code URL_EXCLUDE_PATTERN} key exists in * the parameter map, its value is used as a regular expression pattern to match against * the given URL. If the URL matches the exclusion pattern, the method returns {@code false}, * indicating that the URL should not be crawled. Otherwise, it returns {@code true}. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 29.7K bytes - Click Count (3)