- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for put$index (0.3 sec)
-
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
final SearchEngineClient client = new SearchEngineClient() { @Override public boolean update(final String index, final String id, final String field, final Object value) { resultMap.put("index", index); resultMap.put("id", id); resultMap.put("field", field); resultMap.put("value", value.toString()); return true; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
* * @param body the general settings data to update * @return JSON response with update status */ @Execute public JsonResponse<ApiResult> put$index(final EditBody body) { validateApi(body, messages -> {}); final EditBody newBody = new EditBody(); AdminGeneralAction.updateForm(fessConfig, newBody);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
for (int i = 0; i < 10; i++) { Map<String, Object> doc = new HashMap<>(); doc.put("id", String.valueOf(i)); doc.put("index", i); builder.addDocument(doc); } SearchResult result = builder.allRecordCount(10L).build(); assertEquals(10, result.getDocumentList().size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
final int i = ((inData[inIndex] & 0xff) << 16) + ((inData[inIndex + 1] & 0xff) << 8) + (inData[inIndex + 2] & 0xff); outData[outIndex] = ENCODE_TABLE[i >> 18]; outData[outIndex + 1] = ENCODE_TABLE[i >> 12 & 0x3f]; outData[outIndex + 2] = ENCODE_TABLE[i >> 6 & 0x3f]; outData[outIndex + 3] = ENCODE_TABLE[i & 0x3f]; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.2K bytes - Viewed (0)