Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for committed (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .gitignore

    # ps output for cleaning up leaking Java processes
    *.psoutput
    
    # oh-my-zsh gradle plugin
    .gradletasknamecache
    
    # Added GE support maven support to the maven build in .teamcity, per the GE docs, this dir is NOT to be committed
    .teamcity/.mvn/.develocity/
    /discoclient.properties
    
    # Ignore local configuration files for asdf, allowing the JDK to be configured for project (https://asdf-vm.com)
    .tool-versions
    
    # AI 
    # ---
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 16:15:24 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  2. architecture/standards/0001-use-architectural-decision-records.md

    * They are rarely updated after creation and initial review, and then become hard to follow, especially after important decisions are made
    * They are not synced with the code to reflect the eventual solution that is committed
    * Google Docs is not a "code-oriented" tool, like Markdown can be
    * Review in Google Docs is not as simple as a PR code review in GitHub
    
    ## Decision
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

                return executeTime.get();
            }
    
            @Override
            public void commit() {
                committed.set(true);
            }
    
            public boolean isCommitted() {
                return committed.get();
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

        @Test
        public void test_updater_commit() {
            StopwordsItem newItem = new StopwordsItem(0, "committed");
            StopwordsFile.StopwordsUpdater updater = stopwordsFile.new StopwordsUpdater(newItem);
    
            StopwordsItem result = updater.commit();
            assertNotNull(result);
            assertEquals("committed", result.getInput());
    
            updater.close();
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java

            } catch (Exception e) {
                // Expected due to missing dependencies in test environment
                assertTrue(true);
                return;
            }
            // assertEquals(0, result.size()); // Commented out due to variable scope
        }
    
        @Test
        public void test_getBoostedDocumentList_withVirtualHost() {
            KeyMatch keyMatch = new KeyMatch();
            keyMatch.setId("km1");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            final String result = chatClient.testBuildAssistantHistoryContent(msg, "smart_summary", 500, 500);
            assertTrue(result.contains("...[omitted]..."));
            assertTrue(result.contains("[Referenced documents: Test Doc]"));
            // Head (300) + omitted marker + tail (200) + source titles
            assertTrue(result.length() < 1000);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

            }
    
            @Override
            public void flushBuffer() {
            }
    
            @Override
            public void resetBuffer() {
            }
    
            @Override
            public boolean isCommitted() {
                return false;
            }
    
            @Override
            public void reset() {
            }
    
            @Override
            public void setLocale(java.util.Locale loc) {
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

                public void flushBuffer() {
                }
    
                @Override
                public void resetBuffer() {
                }
    
                @Override
                public boolean isCommitted() {
                    return false;
                }
    
                @Override
                public void reset() {
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 26.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

                public void flushBuffer() throws IOException {
                }
    
                @Override
                public void resetBuffer() {
                }
    
                @Override
                public boolean isCommitted() {
                    return false;
                }
    
                @Override
                public void reset() {
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            } catch (ConfigPropertyNotFoundException e) {
                assertEquals("non.existent.property", e.getMessage());
            }
        }
    
        // Test isExtensionAllowed method
        /*
        // Commented out - methods don't exist in FessConfig
        @Test
        public void test_isExtensionAllowed() {
            assertTrue(fessConfig.isExtensionAllowed("jpg"));
            assertTrue(fessConfig.isExtensionAllowed("jpeg"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.6K bytes
    - Click Count (0)
Back to Top