Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 56 for durant (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            // Test with StackOverflowError as cause
            String message = "Thumbnail generation failed";
            StackOverflowError error = new StackOverflowError("Stack overflow during processing");
            ThumbnailGenerationException exception = new ThumbnailGenerationException(message, error);
    
            assertEquals(message, exception.getMessage());
            assertNotNull(exception.getCause());
    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)
  2. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

        @Test
        public void test_hook_normalExecution() {
            // Create a mock FwAssistantDirector
            FwAssistantDirector assistantDirector = createMockAssistantDirector();
    
            // Should not throw any exception during normal execution
            curtainFinallyHook.hook(assistantDirector);
    
            // Verify that the method completes without errors
            assertTrue(true); // Method completed successfully
        }
    
    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)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

     * This class provides functionality to load, parse, and manage character mapping
     * rules that define how input characters should be transformed to output characters
     * during text analysis and search processing.
     *
     * Character mapping files contain mapping rules in the format:
     * input1,input2,... => output
     */
    public class CharMappingFile extends DictionaryFile<CharMappingItem> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

         * @return the redirect URL if a redirect occurred, null otherwise
         * @throws ChildUrlsException if child URLs are discovered during processing
         * @throws DataStoreCrawlingException if an error occurs during crawling
         */
        protected String processRequest(final DataStoreParams paramMap, final Map<String, Object> dataMap, final String url,
                final CrawlerClient client) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 29.7K bytes
    - Click Count (3)
  5. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

        public void test_constructorWithThrowableCause_OutOfMemoryErrorWithAbort() {
            // Test Error with abort flag
            String url = "http://example.com/critical-resource";
            String message = "Critical memory error during crawling";
            OutOfMemoryError error = new OutOfMemoryError("Cannot allocate memory");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, error, true);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java

        void onPhaseComplete(String phase);
    
        /**
         * Called when a chunk of the response is available during streaming.
         *
         * @param content the content chunk
         * @param done true if this is the final chunk
         */
        void onChunk(String content, boolean done);
    
        /**
         * Called when an error occurs during processing.
         *
         * @param phase the phase where the error occurred
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:32:04 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        /** Queue to track the current XML element hierarchy during parsing. */
        protected LinkedList<String> tagQueue;
    
        /** List to store parsed label types for access control. */
        protected List<LabelType> labelList;
    
        /** Current label type being processed during parsing. */
        protected LabelType labelType;
    
        /** Map to store global configuration parameters. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  8. 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)
  9. src/main/java/org/codelibs/fess/llm/LlmClient.java

        /**
         * Performs a chat completion request.
         *
         * @param request the chat request containing messages and parameters
         * @return the chat response from the LLM
         * @throws LlmException if an error occurs during the request
         */
        LlmChatResponse chat(LlmChatRequest request);
    
        /**
         * Performs a streaming chat completion request.
         * The callback is invoked for each chunk of the response.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/llm/LlmStreamCallback.java

         *
         * @param chunk the text chunk from the LLM response
         * @param done true if this is the final chunk
         */
        void onChunk(String chunk, boolean done);
    
        /**
         * Called when an error occurs during streaming.
         *
         * @param error the error that occurred
         */
        default void onError(final Throwable error) {
            // Default implementation does nothing
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 1.2K bytes
    - Click Count (0)
Back to Top