Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for consistently (0.65 sec)

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

                assertFalse("validateCalled should be false as exception thrown before flag set", extractor.isValidateCalled());
            }
        }
    
        /**
         * Test that validateInputStream is consistent across multiple calls.
         */
        public void test_validateInputStream_consistentAcrossMultipleCalls() {
            final InputStream in1 = new ByteArrayInputStream("data1".getBytes());
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorEnhancedTest.java

            assertNotNull(result.getContent());
            assertTrue("Should contain test content", result.getContent().contains("ใƒ†ใ‚นใƒˆ"));
        }
    
        /**
         * Test that error message format is consistent and descriptive.
         */
        public void test_errorMessage_formatIsDescriptive() {
            final InputStream errorStream = new InputStream() {
                @Override
                public int read() throws IOException {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

        }
    
        /**
         * Inner class for handling updates to the character mapping file.
         * This class manages the temporary file creation, writing operations,
         * and atomic updates to ensure data consistency during modifications.
         */
        protected class MappingUpdater implements Closeable {
    
            /** Flag indicating whether changes should be committed to the file. */
            protected boolean isCommit = false;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

            assertTrue(id.length() <= 445);
        }
    
        @Test
        public void testCreateSuggestTextIdConsistency() {
            // Test that same input always produces same output
            String text = "consistency test";
            String id1 = SuggestUtil.createSuggestTextId(text);
            String id2 = SuggestUtil.createSuggestTextId(text);
            assertEquals(id1, id2);
        }
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                    }
                }
            }
    
            /**
             * Normalizes the URL string by cleaning up multiple slashes and resolving relative paths.
             * This method ensures the URL is in a consistent format for FTP operations.
             *
             * @param s The URL string to normalize
             * @return The normalized URL string
             */
            protected String normalize(final String s) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 40K bytes
    - Viewed (0)
Back to top