Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 15 for occurred (0.06 seconds)

  1. src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java

        @Test
        public void test_constructorWithMessageAndCause() {
            final RuntimeException cause = new RuntimeException("Root cause");
            final LlmException exception = new LlmException("Error occurred", cause);
            assertEquals("Error occurred", exception.getMessage());
            assertSame(cause, exception.getCause());
        }
    
        @Test
        public void test_extendsFromFessSystemException() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 04:19:06 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

                    throw new RuntimeException("IO error occurred during delete operation");
                }
            };
            ComponentUtil.register(searchEngineClient, "searchEngineClient");
    
            // Execute the job
            String result = purgeDocJob.execute();
    
            // Assert error message is in the result
            assertTrue(result.contains("IO error occurred during delete operation"));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

    public class LdapConfigurationExceptionTest extends UnitFessTestCase {
    
        @Test
        public void test_constructor_withMessage() {
            // Test with a normal message
            String message = "LDAP configuration error occurred";
            LdapConfigurationException exception = new LdapConfigurationException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

                thread.start();
            }
    
            // Wait for all threads to complete
            for (Thread thread : threads) {
                thread.join();
            }
    
            // Verify no exceptions occurred
            for (int i = 0; i < threadCount; i++) {
                assertNull(exceptions[i], "Thread " + i + " threw exception");
            }
    
            // Verify alive is false
    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)
  5. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

            }
    
            // Wait for all threads to complete
            for (Thread thread : threads) {
                thread.join(5000); // 5 second timeout
            }
    
            // Verify no errors occurred during concurrent execution
            assertFalse(hasError.get());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

                thread.start();
            }
    
            // Wait for all threads to complete
            for (Thread thread : threads) {
                thread.join();
            }
    
            // Verify no exceptions occurred
            for (int i = 0; i < threadCount; i++) {
                assertNull(exceptions[i], "Thread " + i + " threw exception");
                assertNotNull(results[i], "Thread " + i + " got null result");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            createRequiredDirectories();
            suggestJob.timeout(1);
            suggestJob.processTimeout = true;
    
            mockProcessHelper.setExitValue(1);
            mockProcessHelper.setOutput("Timeout occurred");
    
            String result = suggestJob.execute();
    
            assertNotNull(result);
            // The actual execution flow may not reach the timeout message
            assertTrue(result.contains("Session Id:"));
    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)
  8. src/main/webapp/js/chat.js

        var config = {
            apiUrl: '/api/v1/chat',
            streamUrl: '/api/v1/chat/stream',
            labels: {
                thinking: 'Thinking...',
                waiting: '...',
                error: 'An error occurred. Please try again.',
                sources: 'Sources',
                statusReady: 'AI Assistant',
                statusThinking: 'Processing',
                statusError: 'Error',
                copied: 'Copied!',
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  9. CONTRIBUTING.md

    It looks like the following:
    
    ```
    Execution failed for task ':architecture-test:checkBinaryCompatibility'.
    > A failure occurred while executing me.champeau.gradle.japicmp.JApiCmpWorkAction
       > Detected binary changes.
             - current: ...
             - baseline: ...
         
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_en.properties

    # Chat labels
    labels.chat_title=AI Search Mode - Fess
    labels.chat_new_chat=New Chat
    labels.chat_input_placeholder=Ask a question...
    labels.chat_thinking=Thinking...
    labels.chat_error=An error occurred. Please try again.
    labels.chat_error_rate_limit=It's currently busy. Please wait a moment and try again.
    labels.chat_error_auth=AI service authentication failed. Please contact the administrator.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
Back to Top