- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for NewInput (0.1 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/lex_test.go
lines( "#define A #define B (x) x", "A", "B(THIS)", ), "x.\n", }, */ } func TestLex(t *testing.T) { for _, test := range lexTests { input := NewInput(test.name) input.Push(NewTokenizer(test.name, strings.NewReader(test.input), nil)) result := drain(input) if result != test.output { t.Errorf("%s: got %q expected %q", test.name, result, test.output) }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 29 07:48:38 UTC 2023 - 5.8K bytes - Viewed (0) -
src/cmd/asm/internal/lex/lex.go
return "comment" default: return fmt.Sprintf("%q", rune(t)) } } // NewLexer returns a lexer for the named file and the given link context. func NewLexer(name string) TokenReader { input := NewInput(name) fd, err := os.Open(name) if err != nil { log.Fatalf("%s\n", err) } input.Push(NewTokenizer(name, fd, fd)) return input }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 4.1K 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)