- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for NewInput (0.05 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertEquals("original", item.toLineString()); // When updated, should return newInput item.setNewInput("updated"); assertEquals("updated", item.toLineString()); // When marked for deletion item.setNewInput(""); assertEquals("", item.toLineString()); // When newInput is set back to null item.setNewInput(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
return getEntity(form).map(entity -> { final String newInput = form.input; validateStopwordsString(newInput, "input", hook); entity.setNewInput(newInput); return entity; }); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
// Test with updated item item.setNewInput("updatedword"); assertEquals("updatedword", item.toLineString()); // Test with deleted item (empty newInput) item.setNewInput(""); assertEquals("", item.toLineString()); // Test with item created with id=0 ProtwordsItem newItem = new ProtwordsItem(0, "newword");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/cmd/asm/internal/lex/input.go
macros map[string]*Macro text string // Text of last token returned by Next. peek bool peekToken ScanToken peekText string } // NewInput returns an Input from the given path. func NewInput(name string) *Input { return &Input{ // include directories: look in source dir, then -I directories. includes: append([]string{filepath.Dir(name)}, flags.I...), beginningOfLine: true,
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Sep 06 13:17:27 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
final VaErrorHook hook) { return getEntity(form).map(entity -> { final String newInput = form.input; validateProtwordsString(action, newInput, "input", hook); entity.setNewInput(newInput); return entity; }); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.1K bytes - Viewed (0)