- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 412 for listing (1.22 sec)
-
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.3K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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 } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0)