- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 109 for doc_id (0.06 sec)
-
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
if (setting.containsKey(idKey)) { requestBody.put(idKey, setting.get(idKey)); } final Map<String, Object> doc = new HashMap<>(); doc.put("doc_id", setting.get("doc_id")); doc.put("url", setting.get("url_link")); doc.put("title", setting.get("title")); doc.put("role", "Rguest"); doc.put("boost", setting.get("boost"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
"file://home/taro/%E3%81%82.txt"); assertUrlLink(null, "#not-found-docId"); assertUrlLink("", "#not-found-docId"); assertUrlLink(" ", "#not-found-docId"); } private void assertUrlLink(String url, String expected) { Map<String, Object> doc = new HashMap<>(); doc.put("doc_id", "docId"); doc.put("url", url); assertEquals(expected, viewHelper.getUrlLink(doc));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 15.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
assertEquals(0, deletedDocIdList.size()); docList.clear(); deletedDocIdList.clear(); docList.add(new HashMap<>(Map.of(// "config_id", "W01", // "doc_id", "1", // "url", "http://test.com/001"// ))); documentSizeByQuery = oldDocList.size(); assertEquals(0, indexingHelper.deleteOldDocuments(client, docList));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 24 08:54:24 UTC 2024 - 23.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
} throwValidationErrorApi(messages -> messages.addErrorsInvalidQueryUnknown(GLOBAL)); return null; // ignore } // GET /api/admin/searchlist/doc/{doc_id} @Execute public JsonResponse<ApiResult> get$doc(final String id) { return asJson(new ApiDocResponse().doc(searchEngineClient.getDocument(fessConfig.getIndexDocumentUpdateIndex(), builder -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 24 09:03:45 UTC 2024 - 10.2K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
'500': $ref: '#/components/responses/InternalServerError' /documents/{docId}/favorite: post: tags: - favorite summary: Set a favorite mark description: Set a favorite mark to the document operationId: setFavorite parameters: - name: docId in: path description: Document ID to be favorited required: true
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# field names index.field.favorite_count=favorite_count index.field.click_count=click_count index.field.config_id=config_id index.field.expires=expires index.field.url=url index.field.doc_id=doc_id index.field.id=_id index.field.version=_version index.field.seq_no=_seq_no index.field.primary_term=_primary_term index.field.lang=lang index.field.has_cache=has_cache index.field.last_modified=last_modified
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "docId is empty."); } final String docId = docIdObj.toString(); final String queryId = request.getParameter("queryId"); final String[] docIds = userInfoHelper.getResultDocIds(URLDecoder.decode(queryId, Constants.UTF_8)); if (docIds == null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. url */ String INDEX_FIELD_URL = "index.field.url"; /** The key of the configuration. e.g. doc_id */ String INDEX_FIELD_doc_id = "index.field.doc_id"; /** The key of the configuration. e.g. _id */ String INDEX_FIELD_ID = "index.field.id"; /** The key of the configuration. e.g. _version */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
jsonPath = JsonPath.from(response.asString()); } for (String docId : docIds) { given().contentType("application/json").delete(getEsUrl() + "/" + DOC_INDEX_NAME + "/" + docId); } } protected static List<Map<String, Object>> readCrawlingInfo(final String configId) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
builder.setFetchSource(fields, null); queryHelper.processSearchPreference(builder, userBean, docId); return true; }); } public List<Map<String, Object>> getDocumentListByDocIds(final String[] docIds, final String[] fields, final OptionalThing<FessUserBean> userBean, final SearchRequestType searchRequestType) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 19.1K bytes - Viewed (0)