Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 412 for listing (1.22 sec)

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

    **Key Test Areas**:
    - Parameter handling (null, empty, missing)
    - Special character handling
    - Input stream validation (not consumption)
    - Edge cases (long filenames, paths, whitespace)
    
    **Test Count**: 10 tests
    
    **Key Scenarios**:
    - ✅ Valid filename extraction
    - ✅ Null parameters handling
    - ✅ Empty/missing resource name
    - ✅ Special characters in filename (Japanese, paths)
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

            assertNotNull(pairs, "Decoded pairs should not be null");
            assertEquals(0, pairs.size(), "Should have no pairs");
        }
    
        /**
         * Test decode with missing EOL
         */
        @Test
        @DisplayName("Decode should throw exception when EOL is missing")
        void testDecodeMissingEOL() {
            byte[] flagData = new byte[4];
            SMBUtil.writeInt4(0x12345678, flagData, 0);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

            client.admin().indices().prepareDelete(indexName).execute().actionGet();
            suggester.shutdown();
        }
    
        /**
         * Test getIndicesForAlias method with non-existing alias.
         * Verifies that the method returns an empty list for non-existing alias.
         */
        @Test
        @SuppressWarnings("unchecked")
        public void testGetIndicesForAlias_nonExistingAlias() throws Exception {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  4. MIGRATION.md

    - [ ] Test pagination and sorting
    - [ ] Validate security and access control
    
    ### Testing
    
    - [ ] 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
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/FacetInfo.java

        public String toString() {
            return "FacetInfo [field=" + Arrays.toString(field) + ", query=" + Arrays.toString(query) + ", size=" + size + ", minDocCount="
                    + minDocCount + ", sort=" + sort + ", missing=" + missing + "]";
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  6. CLAUDE.md

        // Process
    }  // Temp files auto-deleted
    ```
    
    ---
    
    ## Best Practices for AI Assistants
    
    ### When Adding Features
    
    1. Read existing code first (use symbol overview tools)
    2. Follow existing patterns
    3. Add tests
    4. Handle resources properly (try-with-resources)
    5. Consider thread safety
    6. Update JavaDoc
    
    ### When Fixing Bugs
    
    1. Write failing test first
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  7. README.md

            System.err.println("Error: " + throwable.getMessage());
        });
    ```
    
    ## Advanced Usage
    
    ### Index from Existing Documents
    
    ```java
    import org.codelibs.fess.suggest.index.contents.document.ESSourceReader;
    
    // Index suggestions from existing Elasticsearch documents
    DocumentReader reader = new ESSourceReader(
        client,
        suggester.settings(),
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sun Aug 31 03:31:14 UTC 2025
    - 12.1K bytes
    - Viewed (1)
  8. CLAUDE.md

    **Technology Stack:**
    - Java 21+, Maven
    - OpenSearch (provided dependency)
    - Apache Lucene (query parsing, text analysis)
    - ICU4J (Unicode text processing)
    - JUnit 4 (testing)
    
    **Repository:** https://github.com/codelibs/fess-suggest
    
    ---
    
    ## Architecture
    
    ### Package Structure
    
    ```
    org.codelibs.fess.suggest/
    ├── Suggester.java              # Main entry point (Facade)
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java

                final PathPattern pattern = new PathPattern(path);
                // Check if pattern already exists
                boolean exists = false;
                for (final PathPattern existing : allowedPaths) {
                    if (existing.getPattern().equals(path)) {
                        exists = true;
                        break;
                    }
                }
                if (!exists) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/http/NtlmServletTest.java

        // A concrete implementation of the abstract NtlmServlet for testing purposes.
        private static class TestNtlmServlet extends NtlmServlet {
            private static final long serialVersionUID = 1L;
    
            @Override
            protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
                // Do nothing - just for testing
            }
    
            @Override
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top