- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 250 for newword (0.26 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) -
guava/src/com/google/common/graph/Network.java
* subtype of {@code Network} that provides methods for adding and removing nodes and edges. If you * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on * the network), you should use the non-mutating {@link Network} interface, or an {@link * ImmutableNetwork}. * * <p>You can create an immutable copy of an existing {@code Network} using {@link * ImmutableNetwork#copyOf(Network)}:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:03:02 UTC 2025 - 22.5K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_user.user/user.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 2.4K bytes - Viewed (0) -
src/main/config/es/fess_user_user.json
}, "groups" : { "type" : "keyword" }, "homeDirectory" : { "type" : "keyword" }, "homePhone" : { "type" : "keyword" }, "homePostalAddress" : { "type" : "keyword" }, "initials" : { "type" : "keyword" },
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 3.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedNetworkTest.java
public void validateUndirectedEdges() { for (Integer node : network.nodes()) { new EqualsTester() .addEqualityGroup( network.inEdges(node), network.outEdges(node), network.incidentEdges(node)) .testEquals(); new EqualsTester() .addEqualityGroup( network.predecessors(node), network.successors(node), network.adjacentNodes(node)) .testEquals();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 18.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/ImmutableNetworkTest.java
mutableNetwork.addEdge("A", "A", "AA"); mutableNetwork.addEdge("A", "B", "AB"); Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); assertThat(network.edgesConnecting("A", "A")).containsExactly("AA"); assertThat(network.edgesConnecting("A", "B")).containsExactly("AB"); assertThat(network.edgesConnecting("B", "A")).isEmpty(); } @Test public void edgesConnecting_undirected() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.web_config/web_config.json
"type": "keyword" }, "urls": { "type": "keyword" }, "includedUrls": { "type": "keyword" }, "excludedUrls": { "type": "keyword" }, "includedDocUrls": { "type": "keyword" }, "excludedDocUrls": { "type": "keyword" }, "configParameter": { "type": "keyword" }, "depth": {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.3K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.file_config/file_config.json
{ "properties": { "name": { "type": "keyword" }, "paths": { "type": "keyword" }, "includedPaths": { "type": "keyword" }, "excludedPaths": { "type": "keyword" }, "includedDocPaths": { "type": "keyword" }, "excludedDocPaths": { "type": "keyword" }, "configParameter": {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.3K bytes - Viewed (0)