- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for newWord (0.05 sec)
-
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
public void test_getNewInput() { // Test getNewInput method ProtwordsItem item = new ProtwordsItem(1, "word"); assertNull(item.getNewInput()); item.setNewInput("newword"); assertEquals("newword", item.getNewInput()); } public void test_setNewInput() { // Test setNewInput method ProtwordsItem item = new ProtwordsItem(1, "word");
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/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
public void test_createMode() { // Test special behavior when id is 0 (create mode) StopwordsItem createItem = new StopwordsItem(0, "newword"); assertTrue(createItem.isUpdated()); assertEquals("newword", createItem.getNewInput()); assertEquals("newword", createItem.toLineString()); // Non-zero id should not auto-set newInput
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/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
ProtwordsItem newItem = new ProtwordsItem(0, "newWord"); // Insert the item protwordsFile.insert(newItem); // Verify the item was added protwordsFile.reload(null); boolean found = false; PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 100); for (ProtwordsItem item : list) { if ("newWord".equals(item.getInput())) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
tests/create_test.go
} if err := DB.Create(&prod).Error; err != nil { t.Fatalf("failed to create, got error %v", err) } newProd := &CompositeKeyProduct{} if err := DB.First(&newProd).Error; err != nil { t.Fatalf("errors happened when query: %v", err) } else { AssertObjEqual(t, newProd, prod, "ProductID", "LanguageCode", "Code", "Name") } } func TestCreateOnConflictWithDefaultNull(t *testing.T) {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 09:55:20 UTC 2025 - 26.8K bytes - Viewed (0) -
PULL_REQUESTS_ETIQUETTE.md
- Write clear messages: what changed and why (e.g., “Refactor S3 API handler to reduce latency so that requests process 20% faster”). - Rebase to tidy commits before submitting (e.g., `git rebase -i main` to squash typos or reword messages), unless multiple contributors worked on the branch. - Keep PRs focused—one feature or fix. Split large changes into multiple PRs. 3. **Testing**: - Include unit tests for new functionality or bug fixes.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun May 25 16:32:03 UTC 2025 - 4.7K bytes - Viewed (0) -
cmd/batch-handlers.go
return !isSourceOrTargetS3 || info.IsLatest } u, err := url.Parse(r.Target.Endpoint) if err != nil { return err } cred := r.Target.Creds c, err := minio.NewCore(u.Host, &minio.Options{ Creds: credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, cred.SessionToken), Secure: u.Scheme == "https", Transport: getRemoteInstanceTransport(),
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.5K bytes - Viewed (0) -
cmd/object-handlers.go
cred := getReqAccessCred(r, globalSite.Region()) // In a federated deployment, all the instances share config files // and hence expected to have same credentials. core, err := miniogo.NewCore(host, &miniogo.Options{ Creds: credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, ""), Secure: globalIsTLS, Transport: getRemoteInstanceTransport(), }) if err != nil { return nil, err
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 120.6K bytes - Viewed (0) -
docs/en/docs/release-notes.md
* 📝 Add External Link: ML serving and monitoring with FastAPI and Evidently. PR [#9701](https://github.com/tiangolo/fastapi/pull/9701) by [@mnrozhkov](https://github.com/mnrozhkov). * 📝 Reword in docs, from "have in mind" to "keep in mind". PR [#10376](https://github.com/tiangolo/fastapi/pull/10376) by [@malicious](https://github.com/malicious).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0) -
okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
// Observable, Inc. : https://observablehq.com // Submitted by Mike Bostock <******@****.***> observablehq.cloud static.observableusercontent.com // OMG.LOL : https://omg.lol // Submitted by Adam Newbold <******@****.***> omg.lol // Omnibond Systems, LLC. : https://www.omnibond.com // Submitted by Cole Estep <******@****.***> cloudycluster.net // OmniWe Limited: https://omniwe.com
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 309.7K bytes - Viewed (1) -
api/go1.txt
pkg strings, method (*Replacer) Replace(string) string pkg strings, method (*Replacer) WriteString(io.Writer, string) (int, error) pkg strings, type Reader struct pkg strings, type Replacer struct pkg sync, func NewCond(Locker) *Cond pkg sync, method (*Cond) Broadcast() pkg sync, method (*Cond) Signal() pkg sync, method (*Cond) Wait() pkg sync, method (*Mutex) Lock() pkg sync, method (*Mutex) Unlock()
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)