- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 537 for match3 (0.06 seconds)
-
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
Pattern pidPattern = isWindows() ? WINDOWS_PID_PATTERN : UNIX_PID_PATTERN; psOutput.forEach(line -> { Matcher commandLineArgsMatcher = commandLineArgsPattern.matcher(line); Matcher pidMatcher = pidPattern.matcher(line); if (commandLineArgsMatcher.find() && pidMatcher.find()) { String pid = pidMatcher.group(1); if (!MY_PID.equals(pid)) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Sep 23 13:49:45 GMT 2025 - 12K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
try { return groovyShell.evaluate(template); } catch (final JobProcessingException e) { throw e; } catch (final Exception e) { return null; } finally { final GroovyClassLoader loader = groovyShell.getClassLoader();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.java
public CreateForm() { // Default constructor } /** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** URL expression pattern to match documents for boosting */ @Required @Size(max = 10000) public String urlExpr; /** Boost expression to apply to matching documents */ @Required @Size(max = 10000)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
* @return The index updater. */ public static IndexUpdater getIndexUpdater() { return getComponent(INDEX_UPDATER); } /** * Gets the key match helper component. * @return The key match helper. */ public static KeyMatchHelper getKeyMatchHelper() { return getComponent(KEY_MATCH_HELPER); } /** * Gets the indexing helper component.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
} // Check that sessionId was generated assertNotNull(options.sessionId); assertTrue(options.sessionId.matches("\\d{14}")); } catch (Exception e) { // Expected since we're not setting up the full container } } @Test public void test_process_withCustomSessionId() throws Exception {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
// setup condition cb.query().addOrderBy_LastAccessTime_Desc(); buildSearchCondition(failureUrlPager, cb); } /** * Deletes all failure URLs that match the criteria specified in the pager. * * @param failureUrlPager the pager containing deletion criteria */ public void deleteAll(final FailureUrlPager failureUrlPager) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
assertEquals("role1", roleNames[0]); assertEquals("role2", roleNames[1]); } @Test public void test_getRoleNames_empty() { // Test when no roles match the prefix ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getRoleSearchRolePrefix() { return "R"; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.9K bytes - Click Count (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
val dirVersion = cacheDirName.removePrefix(dirPrefix).removeSuffix(dirSuffix) if (!dirVersion.matches(dirVersionPattern)) { continue } val cacheVersion = try { GradleVersion.version(dirVersion) } catch (_: IllegalArgumentException) { // Ignore continue }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 28 08:29:28 GMT 2024 - 4.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
return asJson(new ApiDocsResponse().renderData(renderData).status(Status.OK).result()); } catch (final InvalidQueryException e) { if (logger.isDebugEnabled()) { logger.debug("Invalid query: {}", body.q, e); } throwValidationErrorApi(e.getMessageCode()); } catch (final ResultOffsetExceededException e) { if (logger.isDebugEnabled()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.2K bytes - Click Count (0)