- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 17 for getInput (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
newOutput = newOutputs; } /** * Gets the original input word. * * @return The original input word. */ public String getInput() { return input; } /** * Gets the original output stem. * * @return The original output stem. */ public String getOutput() { return output;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.3K 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) -
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) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java
assertEquals("b2", itemList.get(1).getInputs()[1]); assertEquals("B1", itemList.get(1).getOutputs()[0]); assertFalse(itemList.get(1).isUpdated()); assertEquals(1, itemList.get(2).getInputs().length); assertEquals(2, itemList.get(2).getOutputs().length); assertEquals("c1", itemList.get(2).getInputs()[0]);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.2K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/nullaway/NullawayStatusTask.kt
@get:Input val projectPath = project.buildTreePath @get:Input abstract val nullawayEnabled: Property<Boolean> // TODO(https://github.com/gradle/gradle/issues/27582): We cannot use a SetProperty<ResolvedArtifactResult> because some projects // have no task dependencies and thus are non-CC serializable. @get:InputCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Aug 20 13:18:23 GMT 2025 - 2.5K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt
} @get:OutputFile abstract val outputFile: RegularFileProperty @get:CompileClasspath abstract val classpath: ConfigurableFileCollection @get:Input abstract val excludes: ListProperty<String> @get:Input abstract val includes: ListProperty<String> init { excludes.convention(DEFAULT_EXCLUDES) includes.convention(DEFAULT_INCLUDES) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Apr 11 15:53:18 GMT 2025 - 7.1K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiAggregateReportTask.kt
@CacheableTask abstract class IncubatingApiAggregateReportTask : DefaultTask() { @get:InputFiles @get:PathSensitive(PathSensitivity.RELATIVE) abstract val reports: ConfigurableFileCollection @get:Input abstract val currentCommit: Property<String> @get:OutputFile abstract val htmlReportFile: RegularFileProperty @get:OutputFile abstract val csvReportFile: RegularFileProperty
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu May 29 08:21:16 GMT 2025 - 2.2K bytes - Click Count (0)