- Sort Score
- Num 10 results
- Language All
Results 261 - 270 of 287 for coll (0.01 seconds)
-
src/main/assemblies/files/service.bat
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 15 06:32:15 GMT 2023 - 6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 29.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
method.setAccessible(true); return (CurlRequest) method.invoke(curlHelper, request); } catch (Exception e) { fail("Failed to call protected request method: " + e.getMessage()); return null; } } @Override protected void tearDown(TestInfo testInfo) throws Exception { // Clean up system properties
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
ThumbnailGenerationException exception = new ThumbnailGenerationException("Test", new Exception()); // The message and cause constructor uses normal super call, so stack trace should be available assertTrue(exception.getStackTrace().length > 0); } @Test public void test_multipleNestedExceptions() { // Test with multiple nested exceptions
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
/** * Verifies that the CRUD mode matches the expected mode. * * @param crudMode the actual CRUD mode * @param expectedMode the expected CRUD mode * @param errorHook the error hook to call if verification fails */ protected void verifyCrudMode(final int crudMode, final int expectedMode, final VaErrorHook errorHook) { if (crudMode != expectedMode) { throwValidationError(messages -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 13:57:12 GMT 2026 - 10.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
indexUpdater.maxErrorCount = 0; // Make dataService throw runtime exception ((TestDataService) dataService).setThrowRuntimeException(true); indexUpdater.start(); // Poll for thread to process exceptions for (int i = 0; i < 20; i++) { if (!indexUpdater.isAlive() || indexUpdater.getState() == Thread.State.WAITINGCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
} @Test public void test_constructorWithThrowableCause_StackOverflowError() { // Test with StackOverflowError as cause String message = "SSO recursive call exceeded stack limit"; StackOverflowError error = new StackOverflowError("Recursive SSO validation"); SsoProcessException exception = new SsoProcessException(message, error);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
* * <p>Thread Safety: This class is thread-safe. Each cached entry holds its own * GroovyClassLoader. The cache uses Guava Cache with segment-based locking for * lock-free concurrent reads. Each evaluate() call creates a new Script instance * to ensure thread isolation of bindings.</p> * * <p>Note on class-level isolation: Compiled Script classes are cached and reused.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 11.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
* This method can be called by the application to create message containers. * * @return a new FessMessages instance */ @Override public FessMessages createMessages() { // application may call return new FessMessages(); // overriding to change return type to concrete-class } // ===================================================================================Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 15K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
facetQueryView.init(); int firstSize = facetQueryView.getQueryMap().size(); int firstQueriesCount = testFacetInfo.getAddedQueries().size(); // Call init again facetQueryView.init(); // Size should remain the same assertEquals(firstSize, facetQueryView.getQueryMap().size());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 17.9K bytes - Click Count (0)