- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 1,014 for iter (0.02 seconds)
-
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
// Test getting non-existing item OptionalEntity<ProtwordsItem> item = protwordsFile.get(999); assertFalse(item.isPresent()); } @Test public void test_get_withUnloadedData() { // Test getting item when data is not loaded yet OptionalEntity<ProtwordsItem> item = protwordsFile.get(1); assertTrue(item.isPresent()); assertEquals("test1", item.get().getInput()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
ProtwordsItem item = new ProtwordsItem(1, "original"); assertFalse(item.isUpdated()); assertFalse(item.isDeleted()); item.setNewInput("first"); assertTrue(item.isUpdated()); assertFalse(item.isDeleted()); assertEquals("first", item.toLineString()); item.setNewInput("second"); assertTrue(item.isUpdated());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0) -
tests/test_tutorial/test_additional_responses/test_tutorial002.py
"200": { "description": "Return the JSON item or an image.", "content": { "image/png": {}, "application/json": { "schema": {"$ref": "#/components/schemas/Item"} }, },
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 27 10:53:47 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
* Merges two suggest items. * @param item1 The first suggest item. * @param item2 The second suggest item. * @return The merged suggest item. */ public static SuggestItem merge(final SuggestItem item1, final SuggestItem item2) { return SuggestItemMerger.merge(item1, item2); } /** * Checks if the suggest item contains any of the given bad words.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 13.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/storage/StorageItemTest.java
final StorageItem item = new StorageItem(null, null, false, 0L, null, null); assertNull(item.getName()); assertNull(item.getPath()); assertFalse(item.isDirectory()); assertEquals(0L, item.getSize()); assertNull(item.getLastModified()); assertNull(item.getEncodedId()); } public void test_emptyName() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/operations/IndexingOperations.java
/** * Indexes a single suggest item. * * @param index The index name * @param item The suggest item to index * @param badWords The list of bad words to filter against * @return The SuggestIndexResponse */ public SuggestIndexResponse index(final String index, final SuggestItem item, final String[] badWords) { return index(index, new SuggestItem[] { item }, badWords); } /**Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 3.9K bytes - Click Count (0) -
.idea/misc.xml
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Feb 16 19:01:50 GMT 2026 - 5.4K bytes - Click Count (0) -
tests/test_tutorial/test_body_multiple_params/test_tutorial002.py
"summary": "Update Item", }, }, }, "components": { "schemas": { "Body_update_item_items__item_id__put": { "properties": { "item": { "$ref": "#/components/schemas/Item", },
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 11.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java
public void test_render_unorderedList() { String markdown = "- Item 1\n- Item 2\n- Item 3"; String result = markdownRenderer.render(markdown); assertTrue(result.contains("<ul>")); assertTrue(result.contains("<li>")); assertTrue(result.contains("Item 1")); assertTrue(result.contains("Item 2")); assertTrue(result.contains("Item 3")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 7.9K bytes - Click Count (0)