Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for only (0.02 sec)

  1. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java

            assertNotNull(deleteResponse);
            assertFalse(deleteResponse.hasError());
    
            suggester.refresh();
    
            // Document-only should be deleted, Query-only should remain, Both should remain but as Query only
            assertEquals(2, suggester.getAllWordsNum());
            assertEquals(0, suggester.getDocumentWordsNum());
            assertEquals(2, suggester.getQueryWordsNum());
        }
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 28.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getFrameworkDebug();
    
        /**
         * Is the property for the key 'framework.debug' true? <br>
         * The value is, e.g. false <br>
         * comment: Does it enable the Framework internal debug? (true only when emergency)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. CLAUDE.md

    @AfterClass
    public static void afterClass() {
        runner.close();
        runner.clean();
    }
    ```
    
    ### Testing Best Practices
    
    - Minimize `Thread.sleep()` - use only when absolutely necessary
    - For timestamp tests: use minimal delays (50-100ms)
    - Clean only test-specific indices (not `_all` unless needed)
    - Use `runner.refresh()` after index operations
    - Test with realistic multilingual content
    
    ### Key Test Classes
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            protected Writer writer;
    
            /** The mapping item being updated, or null for read-only operations. */
            protected CharMappingItem item;
    
            /**
             * Constructs a new MappingUpdater for handling file updates.
             *
             * @param newItem the character mapping item to update, or null for read-only operations
             */
            protected MappingUpdater(final CharMappingItem newItem) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/SerializeUtil.java

            "java.lang.*",
            "java.util.*",
            "java.time.*",
            "java.math.*",
            "org.codelibs.*",
            "[*" // Allow arrays
        );
    
        /**
         * Default ObjectInputFilter that only allows safe classes to be deserialized.
         * This filter rejects potentially dangerous classes while allowing common safe types.
         */
        private static final ObjectInputFilter DEFAULT_FILTER = filterInfo -> {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 9K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/FilenameExtractorEnhancedTest.java

            assertNotNull(result);
            assertEquals("/path/to/document.pdf", result.getContent());
        }
    
        /**
         * Test that input stream content is not read (only validated).
         */
        public void test_getText_doesNotReadInputStream() throws Exception {
            final byte[] testData = "This data should not be read".getBytes();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. CLAUDE.md

    ## Development Commands
    
    ### Build and Test
    ```bash
    # Clean build and run tests
    mvn clean test
    
    # Full build with packaging
    mvn clean package
    
    # Run tests only
    mvn test
    
    # Run specific tests
    mvn test -Dtest=CurlTest
    mvn test -Dtest=CurlRequestTest
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  8. README.md

    - Automatic in-memory or on-disk caching of request/response bodies
    - Synchronous and asynchronous (callback) execution
    - Minimal dependencies (only Apache Commons IO)
    
    ## Installation
    
    ### Maven
    
    Add the dependency to your `pom.xml` (replace `x.y.z` with the latest version):
    
    ```xml
    <dependency>
      <groupId>org.codelibs</groupId>
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java

        }
    
        @Test
        public void test_parseSearchWordsWithExcludedWords() throws Exception {
            String[] words = new String[] { "   ", "エンジン" }; // First word is whitespace only
            String[] fields = new String[] { "content" };
    
            SuggestAnalyzer analyzer = suggester.settings().analyzer().new DefaultContentsAnalyzer();
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  10. CLAUDE.md

    - Format parameters as `key=value` (e.g., `sessionId={}`, `url={}`)
    - Prefix with `[name]` when context identification is needed
    - Use full words, not abbreviations (e.g., "documents" not "docs")
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top