- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 329 for fpPattern (0.77 sec)
-
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
import java.util.List; import java.util.regex.Pattern; import org.codelibs.core.misc.Pair; import org.codelibs.fess.unit.UnitFessTestCase; public class FessCrawlerThreadTest extends UnitFessTestCase { public void test_getClientRuleList() { FessCrawlerThread crawlerThread = new FessCrawlerThread(); List<Pair<String, Pattern>> list = crawlerThread.getClientRuleList(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
} finally { System.clearProperty("lasta.env"); } } public void test_createPathMatcher_encodeUrl() { final Pattern pattern = Pattern.compile("test"); final Matcher matcher = pattern.matcher("test"); final BiFunction<String, Matcher, String> pathMatcher = pathMappingHelper.createPathMatcher(matcher, "function:encodeUrl");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/util/InputValidator.java
// Patterns for validation private static final Pattern VALID_USERNAME = Pattern.compile("^[a-zA-Z0-9._\\-@]+$"); private static final Pattern VALID_DOMAIN = Pattern.compile("^[a-zA-Z0-9._\\-]+$"); private static final Pattern VALID_SHARE = Pattern.compile("^[a-zA-Z0-9._\\-$]+$"); private static final Pattern PATH_TRAVERSAL = Pattern.compile("\\.\\.[\\\\/]");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
/** Pattern used to match file paths that this creator can handle. */ protected Pattern pattern; /** Manager for dictionary operations and lifecycle. */ @Resource protected DictionaryManager dictionaryManager; /** * Creates a new DictionaryCreator with the specified pattern. * * @param pattern the regular expression pattern to match file paths */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
} } /** * Converts a pattern string to a plain pattern string without delimiters. * * @param pattern * The pattern string. * @return The plain pattern string without delimiters. */ protected static String toPlainPattern(final String pattern) { final StringBuilder buf = new StringBuilder(pattern.length()); for (int i = 0; i < pattern.length(); ++i) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
} } /** * Converts the pattern string to a plain pattern string without delimiters. * * @param pattern * The pattern string. * @return The plain pattern string without delimiters. */ protected static String toPlainPattern(final String pattern) { final StringBuilder buf = new StringBuilder(pattern.length()); for (int i = 0; i < pattern.length(); ++i) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/resources/log4j2.xml
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 20 13:17:33 UTC 2023 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
// Should match included path assertTrue(pattern.match("/test/path")); // Should not match excluded path assertFalse(pattern.match("/exclude/path")); // Should not match non-included path assertFalse(pattern.match("/other/path")); } public void test_labelTypePattern_match_onlyIncluded() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0)