- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 163 for regexes (0.62 sec)
-
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
return appendFileterPath(buf, escape(s)); } /** * Escapes special regex characters in a string to create a literal pattern. * Handles anchor characters (^ and $) specially to preserve their regex meaning. * * @param s the string to escape * @return an escaped regex pattern, or empty string for comments */ protected String escape(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) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt
.assertLogMatch(Regex("""User-Agent: okhttp/.+""")) .assertLogEqual("--> END GET") .assertLogMatch(Regex("""<-- 200 OK $url \(\d+ms\)""")) .assertLogEqual("Content-Type: text/html; charset=0") .assertLogMatch(Regex("""Content-Length: \d+""")) .assertLogMatch(Regex("")) .assertLogEqual("Body with unknown charset") .assertLogMatch(Regex("""<-- END HTTP \(\d+ms, 25-byte body\)"""))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 14:27:04 UTC 2025 - 37.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsPathMappingCQ.java
} public void setRegex_Equal(String regex) { setRegex_Term(regex, null); } public void setRegex_Equal(String regex, ConditionOptionCall<TermQueryBuilder> opLambda) { setRegex_Term(regex, opLambda); } public void setRegex_Term(String regex) { setRegex_Term(regex, null); } public void setRegex_Term(String regex, ConditionOptionCall<TermQueryBuilder> opLambda) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 72.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsPathMapping.java
this.processType = value; } public String getRegex() { checkSpecifiedProperty("regex"); return convertEmptyToNull(regex); } public void setRegex(String value) { registerModifiedProperty("regex"); this.regex = value; } public String getReplacement() { checkSpecifiedProperty("replacement");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt
.assertLogMatch(Regex("""callStart: Request\{method=POST, url=$url\}""")) .assertLogMatch(Regex("""proxySelectStart: $url""")) .assertLogMatch(Regex("""proxySelectEnd: \[DIRECT]""")) .assertLogMatch(Regex("""dnsStart: ${url.host}""")) .assertLogMatch(Regex("""dnsEnd: \[.+]""")) .assertLogMatch(Regex("""connectStart: ${url.host}/.+ DIRECT""")) .assertLogMatch(Regex("""connectEnd: http/1.1"""))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsPathMappingCA.java
} public void setRegex_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setRegex_Terms("regex", opLambda, null); } public void setRegex_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) { setRegex_Terms("regex", opLambda, aggsLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 59.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
/** * Adds custom system properties that match the given regex pattern to the command list. * * @param cmdList the command list to add properties to * @param regex the regular expression pattern to match property names */ protected void addFessCustomSystemProperties(final List<String> cmdList, final String regex) { if (StringUtil.isNotBlank(regex)) { final Pattern pattern = Pattern.compile(regex);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/PathMappingDbm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/stream/StreamUtil.java
* @param regex the regular expression to use for splitting the string * @return a stream of substrings resulting from splitting the input string, or an empty stream if the input is {@code null} */ public static StreamOf<String> split(final String value, final String regex) { return stream(value == null ? null : value.split(regex)); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java
regQ(wildcardQuery); return wildcardQuery; } protected RegexpQueryBuilder regRegexpQ(String name, String regexp) { checkEsInvalidQuery(name, regexp); RegexpQueryBuilder regexpQuery = QueryBuilders.regexpQuery(name, regexp); regQ(regexpQuery); return regexpQuery; } protected CommonTermsQueryBuilder regCommonTermsQ(String name, Object text) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0)