- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 129 for Pattern (0.08 sec)
-
src/main/java/org/codelibs/core/convert/DateConversionUtil.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 - 19.6K 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/taglib/FessFunctions.java
/** Format identifier for PDF date parsing */ private static final String PDF_DATE = "pdf_date"; /** Regular expression pattern for matching email addresses */ private static final Pattern EMAIL_ADDRESS_PATTERN = Pattern.compile("[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}", Pattern.CASE_INSENSITIVE); /** * Cache for storing resource file modification timestamps to enable cache busting.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
assertTrue(pattern.match("/test/path")); // Should not match excluded path assertFalse(pattern.match("/exclude/path")); } public void test_labelTypePattern_match_noPatterns() { LabelTypePattern pattern = new LabelTypePattern("test", null, null); // Should match everything when no patterns assertTrue(pattern.match("/any/path"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.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) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt
init { require( (pattern.startsWith("*.") && pattern.indexOf("*", 1) == -1) || (pattern.startsWith("**.") && pattern.indexOf("*", 2) == -1) || pattern.indexOf("*") == -1, ) { "Unexpected pattern: $pattern" } this.pattern = pattern.toCanonicalHost() ?: throw IllegalArgumentException("Invalid pattern: $pattern") when {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.1K 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/org/codelibs/fess/util/GsaConfigParser.java
} /** * Converts a GSA URL pattern into a regular expression pattern suitable for Fess. * Handles various GSA pattern formats including regexp, contains, and URL-based patterns. * * @param s the input GSA pattern string * @return a regular expression pattern string, or empty string for comments/invalid patterns */ protected String getFilterPath(final String s) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0)