Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for acceptable (0.26 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)
Back to top