Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for newWord (0.05 sec)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

        public void test_getNewInput() {
            // Test getNewInput method
            ProtwordsItem item = new ProtwordsItem(1, "word");
            assertNull(item.getNewInput());
    
            item.setNewInput("newword");
            assertEquals("newword", item.getNewInput());
        }
    
        public void test_setNewInput() {
            // Test setNewInput method
            ProtwordsItem item = new ProtwordsItem(1, "word");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

        public void test_createMode() {
            // Test special behavior when id is 0 (create mode)
            StopwordsItem createItem = new StopwordsItem(0, "newword");
            assertTrue(createItem.isUpdated());
            assertEquals("newword", createItem.getNewInput());
            assertEquals("newword", createItem.toLineString());
    
            // Non-zero id should not auto-set newInput
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            ProtwordsItem newItem = new ProtwordsItem(0, "newWord");
    
            // Insert the item
            protwordsFile.insert(newItem);
    
            // Verify the item was added
            protwordsFile.reload(null);
            boolean found = false;
            PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 100);
            for (ProtwordsItem item : list) {
                if ("newWord".equals(item.getInput())) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Observable, Inc. : https://observablehq.com
    // Submitted by Mike Bostock <******@****.***>
    observablehq.cloud
    static.observableusercontent.com
    
    // OMG.LOL : https://omg.lol
    // Submitted by Adam Newbold <******@****.***>
    omg.lol
    
    // Omnibond Systems, LLC. : https://www.omnibond.com
    // Submitted by Cole Estep <******@****.***>
    cloudycluster.net
    
    // OmniWe Limited: https://omniwe.com
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
Back to top