- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for vagy (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/it/admin/StatsTests.java
logger.info("Stats version: {}", version); logger.info("Stats status: {}", status); // Verify stats contain expected fields // Note: The actual fields may vary depending on the implementation // Common fields might include: document count, index size, etc. assertTrue(res.size() > 0, "Response should contain stats data"); logger.info("[END] testRead");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
mockProcessHelper.setThrowException(new InterruptedException("Interrupted")); try { suggestJob.executeSuggestCreator(); // In test environment, exception handling may vary } catch (JobProcessingException e) { assertTrue(e.getMessage().contains("SuggestCreator Process terminated")); } catch (Exception e) {
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/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
assertNotNull(result); assertNotNull(thumbnailJob.sessionId); assertTrue(result.contains("Session Id: " + thumbnailJob.sessionId)); // Exception handling may vary, just verify result is not null } // Test executeThumbnailGenerator with process failure @Test public void test_executeThumbnailGenerator_processFailure() { thumbnailJob.numOfThreads(2);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
} latch.countDown(); }); t1.start(); t2.start(); assertTrue(latch.await(5, TimeUnit.SECONDS)); // The exact size may vary due to concurrent modifications, just check it's not empty assertTrue(execJob.jvmOptions.size() > 0); } // Test pattern matching in custom properties @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
final String value = transformer.normalizeCanonicalUrl("http://example.com/", "://"); // java.net.URL(base, "://") prepends protocol, result may vary // The key point: no exception is thrown and a result is returned assertNotNull(value); } @Test public void test_getURL_withMalformedRelative() throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 62.9K bytes - Click Count (0)