- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 89 for batches (0.04 seconds)
-
src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java
assertTrue(pattern.matcher("application/x-lha").matches()); assertTrue(pattern.matcher("application/x-lha-compressed").matches()); } @Test public void test_fsFileRulePattern_xmlTypes() { Pattern pattern = Pattern.compile(FS_FILE_RULE_PATTERN); assertTrue(pattern.matcher("application/xml").matches());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 8.7K 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) -
.teamcity/scripts/CheckWrapper.java
throw new IllegalStateException("Malformed distributionUrl line: " + distributionUrl); } String url = distributionUrl.substring(idx + 1).trim(); Matcher m = WRAPPER_VERSION_EXTRACT.matcher(url); if (!m.matches()) { throw new IllegalStateException("Could not extract wrapper version from distributionUrl: " + url); } return m.group(1); }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 6.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
final String servletPath = request.getServletPath(); final boolean matches = servletPath.startsWith(CHAT_API_PATH); if (logger.isTraceEnabled()) { logger.trace("ChatApiManager.matches() checking path. servletPath={}, expectedPrefix={}, matches={}", servletPath, CHAT_API_PATH, matches); } return matches; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
.findFirst() .orElseThrow(() -> new IOException("Can't find package definition in file " + file)); Matcher matcher = pattern.matcher(packageLine); if (matcher.find()) { return matcher.group(1); } else { throw new IOException("Can't extract package name from file " + file); } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sun Mar 01 05:52:34 GMT 2026 - 11.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/SystemUtil.java
* @return The masked value if the key matches a sensitive pattern, otherwise the original value */ public static String maskSensitiveValue(final String key, final String value) { if (key == null || value == null) { return value; } if (getSensitivePattern().matcher(key).matches()) { return "********"; } return value; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:32:50 GMT 2026 - 3.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java
} for (final WebApiManager webApiManager : webApiManagers) { if (webApiManager.matches(request)) { if (logger.isDebugEnabled()) { logger.debug("WebApiManager matched. servletPath={}, manager={}", servletPath, webApiManager.getClass().getSimpleName()); } return webApiManager;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 3.1K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 23:22:57 GMT 2026 - 12.8K 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/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)