Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for differs (0.18 seconds)

  1. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            if (expected == null || actual == null) {
                fail("Arrays are not equal: one is null");
            }
            assertEquals("Array lengths differ", expected.length, actual.length);
            for (int i = 0; i < expected.length; i++) {
                assertEquals("Array element at index " + i + " differs", expected[i], actual[i]);
            }
        }
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java

    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    import jakarta.annotation.PreDestroy;
    
    /**
     * Helper that manages the lifecycle of the log notification timer and
     * buffers log notification events for periodic flushing to OpenSearch.
     */
    public class LogNotificationHelper {
    
        /**
         * Default constructor.
         */
        public LogNotificationHelper() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            assertNotNull(actual, "Actual array is null but expected is not");
            assertEquals("Array lengths differ", expected.length, actual.length);
            for (int i = 0; i < expected.length; i++) {
                assertEquals("Arrays differ at index " + i, expected[i], actual[i]);
            }
        }
    
        // Test implementation of FessUser interface
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  4. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    options =
                        listOf(
                            "Generate diffs" to "",
                            "Skip diffs generation" to "--no-generate-diffs",
                        ),
                )
                text(
                    "scenario",
                    "",
                    display = ParameterDisplay.PROMPT,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 14:08:32 GMT 2026
    - 6K bytes
    - Click Count (0)
  5. architecture/standards/0002-avoid-using-java-serialization.md

    - **Size of Serialized Data:**
    Java serialization tends to produce larger serialized objects because it includes class metadata and other overhead.
    
    - **Flexibility and Control:**
    Java serialization offers limited control over the serialization process, such as excluding certain fields, customizing naming conventions, and handling complex data structures more gracefully.
    
    - **Security:**
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 14:05:45 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  6. architecture/standards/0008-use-nullaway.md

    * Classes are forced to have consistent nullability annotations.
    * IDE warnings become more accurate, reducing warnings fatigue.
    * Public API nullability annotations become closer to reality.
    * Java compilation of Gradle code suffers from small performance penalty (up to 10%).
    * Time has to be allocated to clean up existing projects.
    * One has to write NullAway-conformant code even when hacking.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

             */
            public boolean isTeminated() {
                return teminated;
            }
        }
    
        /**
         * Thread that reads input stream data and buffers it for later retrieval.
         * Captures output from command execution with configurable line buffering.
         */
        protected static class InputStreamThread extends Thread {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  8. README.md

    ---
    
    ### 💬 **Community Support & Resources**
    
    The Gradle community offers a range of forums, documentation, and direct help to guide you through every step of your Gradle journey:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  9. src/main/resources/fess_message_de.properties

    errors.password_no_uppercase = Das Passwort muss mindestens einen Großbuchstaben enthalten.
    errors.password_no_lowercase = Das Passwort muss mindestens einen Kleinbuchstaben enthalten.
    errors.password_no_digit = Das Passwort muss mindestens eine Ziffer enthalten.
    errors.password_no_special_char = Das Passwort muss mindestens ein Sonderzeichen enthalten.
    errors.password_is_blacklisted = Dieses Passwort ist nicht erlaubt. Bitte wählen Sie ein anderes Passwort.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  10. MIGRATION.md

    # Migration Guide
    
    This guide provides comprehensive instructions for migrating from other enterprise search systems to Fess. Fess offers robust compatibility layers, import tools, and APIs to facilitate smooth transitions from various search platforms.
    
    ## Table of Contents
    
    - [Supported Migration Sources](#supported-migration-sources)
    - [Pre-Migration Planning](#pre-migration-planning)
    - [Migration Methods](#migration-methods)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
Back to Top