Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for yyerror (0.14 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorEnhancedTest.java

                final String message = e.getMessage();
                assertNotNull("Error message should not be null", message);
                assertFalse("Error message should not be empty", message.trim().isEmpty());
                assertTrue("Error message should start with action verb", message.startsWith("Failed to extract"));
                assertTrue("Error message should contain 'text content'", message.contains("text content"));
            }
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/index/SuggestDeleteResponseTest.java

            errors.add(new Exception("Test error"));
            SuggestDeleteResponse response2 = new SuggestDeleteResponse(errors, 100);
            assertTrue(response2.hasError());
        }
    
        @Test
        public void test_getErrors() throws Exception {
            List<Throwable> errors = new ArrayList<>();
            errors.add(new Exception("Error 1"));
            errors.add(new RuntimeException("Error 2"));
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

         * @param message the error message
         * @param cause the underlying exception that caused this error
         * @param abort whether the crawling process should be aborted due to this error
         */
        public DataStoreCrawlingException(final String url, final String message, final Throwable cause, final boolean abort) {
            super(message, cause);
            this.url = url;
            this.abort = abort;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Wed Nov 19 08:04:23 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    - ✅ Consistent `validateInputStream()` usage
    - ✅ Reduced code duplication
    - ✅ Clear exception messages
    
    ### 3. Error Handling
    - ✅ Archive extractors continue on partial failures
    - ✅ Processing statistics in error messages
    - ✅ Specific file names in error logs
    
    ### 4. Error Messages
    - ✅ Encoding information in TextExtractor errors
    - ✅ File type context in MS Office errors
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexResponseTest.java

            errors.add(new Exception("Test error"));
            SuggestIndexResponse response2 = new SuggestIndexResponse(10, 5, errors, 100);
            assertTrue(response2.hasError());
        }
    
        @Test
        public void test_getErrors() throws Exception {
            List<Throwable> errors = new ArrayList<>();
            errors.add(new Exception("Error 1"));
            errors.add(new RuntimeException("Error 2"));
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java

         * @param workstation the workstation
         * @param challenge the Type 2 challenge message
         * @return the Base64-encoded Type 3 message
         * @throws NTLMEngineException if an NTLM engine error occurs
         * @throws CrawlingAccessException if an error occurs during message generation
         */
        @Override
        public String generateType3Msg(final String username, final String password, final String domain, final String workstation,
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java

    import org.codelibs.fess.crawler.helper.impl.MimeTypeHelperImpl;
    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * Test class for archive extractor error handling improvements.
     * Tests partial extraction, error recovery, and improved error messages.
     */
    public class ArchiveExtractorErrorHandlingTest extends PlainTestCase {
        private static final Logger logger = LogManager.getLogger(ArchiveExtractorErrorHandlingTest.class);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java

         *
         * @throws IOException if an I/O error occurs (not thrown in this implementation)
         */
        @Override
        public void close() throws IOException {
            // inputStream.close();
        }
    
        /**
         * Returns the number of bytes that can be read from this input stream without blocking.
         *
         * @return the number of bytes available
         * @throws IOException if an I/O error occurs
         */
        @Override
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

         *
         * @param message The detailed error message explaining the cause of the exception
         */
        public SsoProcessException(final String message) {
            super(message);
        }
    
        /**
         * Constructs a new SSO process exception with the specified detailed message and cause.
         *
         * @param message The detailed error message explaining the cause of the exception
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Wed Nov 19 08:04:23 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/request/Request.java

         * @return A Promise that will be resolved with the response or rejected with an error.
         */
        public Deferred<T>.Promise execute(final Client client) {
            final String error = getValidationError();
            if (!Strings.isNullOrEmpty(error)) {
                throw new IllegalArgumentException(error);
            }
    
            final Deferred<T> deferred = new Deferred<>();
            try {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sun Nov 23 11:21:40 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top