- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 127 for batches (0.09 seconds)
-
MIGRATION.md
```bash curl -u admin:admin ... # or curl -H "Authorization: Basic YWRtaW46YWRtaW4=" ... ``` #### Issue: Large bulk imports timing out **Solution**: - Split large files into smaller batches (e.g., 10,000 docs per file) - Increase timeout in `system.properties`: ```properties crawler.document.request.timeout=600000 ``` - Use asynchronous import via Admin UI instead of API
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0) -
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) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
if (excludedPaths != null && excludedPaths.matcher(path).matches()) { if (logger.isDebugEnabled()) { logger.debug("Path {} matches the include/exclude path expression {} on {} of label.", path, excludedPaths, value); } return false; } 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/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) -
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) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
} /** * Creates a path matcher function for path mapping. * * @param matcher the regex matcher * @param replacement the replacement string * @return the path matcher function */ public BiFunction<String, Matcher, String> createPathMatcher(final Matcher matcher, final String replacement) { // for PathMappingCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9.5K 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/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java
} private static boolean isOldMethod(JApiMethod jApiMethod, Map<AccessorKey, ReplacedAccessor> upgradedMethods, Pattern pattern) { String name = jApiMethod.getName(); if (!pattern.matcher(name).matches()) { return false; } return upgradedMethods.containsKey(AccessorKey.ofOldMethod(jApiMethod)); }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 9.3K 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)