- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for NewInput (0.08 sec)
-
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
return newInput; } public void setNewInput(final String newInput) { this.newInput = newInput; } public String getNewOutput() { return newOutput; } public void setNewOutput(final String newOutputs) { newOutput = newOutputs; } public String getInput() { return input; } public String getOutput() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
private String newInput; public ProtwordsItem(final long id, final String input) { this.id = id; this.input = input; if (id == 0) { // create newInput = input; } } public String getNewInput() { return newInput; } public void setNewInput(final String newInput) { this.newInput = newInput; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
private String newInput; public StopwordsItem(final long id, final String input) { this.id = id; this.input = input; if (id == 0) { // create newInput = input; } } public String getNewInput() { return newInput; } public void setNewInput(final String newInput) { this.newInput = newInput; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.4K 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 16.7K 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.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 Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Sep 06 13:17:27 UTC 2024 - 12.5K bytes - Viewed (0)