Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for acceptable (0.31 sec)

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

                assertNotNull("Content should not be null", result.getContent());
                // Empty or minimal content is acceptable for invalid archives
            } catch (final ExtractException e) {
                // Exception is also acceptable - verify it has a descriptive message
                assertTrue("Error message should mention TAR archive or extraction failure",
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ExtractorResourceManagementTest.java

            } catch (final RuntimeException e) {
                // POI may throw IllegalArgumentException or other RuntimeExceptions
                // for invalid data, which is also acceptable
                assertNotNull("Exception message should not be null", e.getMessage());
            }
        }
    
        /**
         * Test that MsExcelExtractor throws appropriate exception for invalid data.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         *
         * @return true if the CPU load is within the acceptable range, false otherwise.
         */
        public boolean calibrateCpuLoad() {
            return calibrateCpuLoad(0L);
        }
    
        /**
         * Calibrates the CPU load with a timeout.
         *
         * @param timeoutInMillis The timeout in milliseconds.
         * @return true if the CPU load is within the acceptable range, false otherwise.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

                // Should not throw NPE - implementation should handle gracefully or throw
            } catch (NullPointerException e) {
                // Acceptable behavior
                assertTrue(true);
            } catch (Exception e) {
                // Other exceptions might be acceptable
                assertTrue(true);
            }
        }
    
        /**
         * Test destroyObject with PooledObject containing null object
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 13:07:01 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  5. MIGRATION.md

    - [ ] Functional testing of search queries
    - [ ] Performance testing (response time, throughput)
    - [ ] Security testing (authentication, authorization)
    - [ ] Integration testing with client applications
    - [ ] User acceptance testing
    - [ ] Load testing for production capacity
    
    ### Go-Live
    
    - [ ] Schedule maintenance window
    - [ ] Final incremental data sync
    - [ ] Switch DNS or endpoints to Fess
    - [ ] Monitor logs for errors
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
Back to top