- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 23 for getInput (0.06 seconds)
-
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
assertEquals(4, list.size()); assertEquals("test1", list.get(0).getInput()); assertEquals("日本語", list.get(1).getInput()); assertEquals("word with spaces", list.get(2).getInput()); assertEquals(" tab word ", list.get(3).getInput()); } // Helper method to write content to test file private void writeTestFile(String content) throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
@Test public void test_getInput() { // Test getInput method StopwordsItem item1 = new StopwordsItem(1, "test"); assertEquals("test", item1.getInput()); StopwordsItem item2 = new StopwordsItem(2, ""); assertEquals("", item2.getInput()); StopwordsItem item3 = new StopwordsItem(3, null); assertNull(item3.getInput()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
assertEquals(3, stopwordsFile.stopwordsItemList.size()); assertEquals("word1", stopwordsFile.stopwordsItemList.get(0).getInput()); assertEquals("word2", stopwordsFile.stopwordsItemList.get(1).getInput()); assertEquals("word3", stopwordsFile.stopwordsItemList.get(2).getInput()); } @Test public void test_reload_withEscapedCharacters() { String content = "word\\\\1\n" + // word\1Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
@Test public void test_getInput() { // Test getInput method ProtwordsItem item1 = new ProtwordsItem(1, "word1"); assertEquals("word1", item1.getInput()); ProtwordsItem item2 = new ProtwordsItem(2, ""); assertEquals("", item2.getInput()); ProtwordsItem item3 = new ProtwordsItem(3, null); assertNull(item3.getInput()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
public void setNewInput(final String newInput) { this.newInput = newInput; } /** * Gets the original stopword. * * @return The original stopword. */ public String getInput() { return input; } /** * Gets the value of the stopword. * * @return The stopword value, or an empty string if null. */ public String getInputValue() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 3.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
*/ public void setNewInput(final String newInput) { this.newInput = newInput; } /** * Gets the input value for this item. * @return the input value */ public String getInput() { return input; } /** * Gets the input value or empty string if null. * @return the input value or empty string */ public String getInputValue() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 3.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItemTest.java
public void test_new1() { final StemmerOverrideItem stemmerOverrideItem = new StemmerOverrideItem(1, "aaa", "a"); assertEquals(1, stemmerOverrideItem.getId()); assertEquals("aaa", stemmerOverrideItem.getInput()); assertEquals("a", stemmerOverrideItem.getOutput()); assertNull(stemmerOverrideItem.getNewInput()); assertNull(stemmerOverrideItem.getNewOutput()); assertFalse(stemmerOverrideItem.isUpdated());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.6K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt
*/ @get:Input @get:Optional @get:Option(option = "fix", description = "When enabled, will write the correct computed runtimes back to the build files") abstract val fix: Property<Boolean> /** * If enabled, prints extra details describing why a target runtime declaration is invalid. */ @get:Input @get:OptionalCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 13.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymItemTest.java
assertEquals(1, synonymItem.getId()); assertEquals(2, synonymItem.getInputs().length); assertEquals("a", synonymItem.getInputs()[0]); assertEquals("A", synonymItem.getInputs()[1]); assertEquals(2, synonymItem.getOutputs().length); assertEquals("b", synonymItem.getOutputs()[0]);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8K bytes - Click Count (1) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/tasks/BuildReceipt.kt
} @get:Input abstract val version: Property<String> @get:Input abstract val baseVersion: Property<String> @get:Input @get:Optional abstract val commitId: Property<String> @get:Input @get:Optional abstract val scriptTemplateCommitId: Property<String> @get:Input abstract val snapshot: Property<Boolean>Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 25 08:51:12 GMT 2026 - 4.1K bytes - Click Count (0)