- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 19 for Interrupted (0.3 seconds)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java
// Wait for all threads to complete for (Thread thread : threads) { try { thread.join(); } catch (InterruptedException e) { fail("Thread interrupted: " + e.getMessage()); } } // Verify all threads got the same instances for (int i = 0; i < threadCount; i++) { assertSame(invertibleCryptographer, invertibles[i]);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* Interrupted exceptions are caught and logged at debug level. */ public void awaitTermination() { try { join(); } catch (final InterruptedException e) { if (logger.isDebugEnabled()) { logger.debug("Interrupted.", e); } } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
} } catch (final InterruptedException e) { logger.warn("[LLM] Request interrupted while waiting for concurrency permit. name={}", getName()); Thread.currentThread().interrupt(); throw new LlmException("Request interrupted", LlmException.ERROR_TIMEOUT); } } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
}); try { latch.await(); } catch (final InterruptedException ignore) { if (logger.isDebugEnabled()) { logger.debug("Interrupted.", ignore); } exitCode.set(1); } } if (ComponentUtil.getFessConfig().isSuggestSearchLog()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 12.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
executorService.awaitTermination(60, TimeUnit.SECONDS); } catch (final InterruptedException e) { if (logger.isDebugEnabled()) { logger.debug("Executor shutdown interrupted", e); } } finally { executorService.shutdownNow(); } } } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 25 02:13:14 GMT 2025 - 28K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
} } // Test executeSuggestCreator with interrupted exception @Test public void test_executeSuggestCreator_withInterruptedException() { createRequiredDirectories(); mockProcessHelper.setThrowException(new InterruptedException("Interrupted")); try { suggestJob.executeSuggestCreator();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 31.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 06:54:47 GMT 2025 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
throw e; } catch (final InterruptedException e) { if (mt != null && mt.isTeminated()) { if (logger.isDebugEnabled()) { logger.debug("Command execution interrupted due to timeout for user: username={}", username, e); } throw new CommandExecutionException("The command execution is timeout for user: " + username, e); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
if (!task.isExecuted()) { task.run(); } } } catch (final InterruptedException e) { logger.warn("Interrupted generating thumbnail: id={}, command={}", thumbnailId, cmdList, e); Thread.currentThread().interrupt(); } catch (final Exception e) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 16.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
executorService.awaitTermination(60, TimeUnit.SECONDS); } catch (final InterruptedException e) { if (logger.isDebugEnabled()) { logger.debug("Interrupted.", e); } } finally { executorService.shutdownNow(); } return totalCount; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.4K bytes - Click Count (0)