Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for doc_id (0.05 sec)

  1. ViewHelperTest.java

    L171: "file://home/taro/%E3%81%82.txt"); L172: L173: assertUrlLink(null, "#not-found-docId"); L174: assertUrlLink("", "#not-found-docId"); L175: assertUrlLink(" ", "#not-found-docId"); L176: } L177: L178: private void assertUrlLink(String url, String expected) { L179: Map<String, Object> doc = new HashMap<>(); L180: doc.put("doc_id", "docId"); L181: doc.put("url", url); L182: assertEquals(expected, viewHelper.getUrlLink(doc)); L183:...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      15.1K bytes
  2. SearchListTests.java

    L112: L113: if (setting.containsKey(idKey)) { L114: requestBody.put(idKey, setting.get(idKey)); L115: } L116: L117: final Map<String, Object> doc = new HashMap<>(); L118: doc.put("doc_id", setting.get("doc_id")); L119: doc.put("url", setting.get("url_link")); L120: doc.put("title", setting.get("title")); L121: doc.put("role", "Rguest"); L122: doc.put("boost", setting.get("boost")); L123: ...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.5K bytes
  3. IndexingHelperTest.java

    docList.size()); L152: assertEquals(0, deletedDocIdList.size()); L153: L154: docList.clear(); L155: deletedDocIdList.clear(); L156: docList.add(new HashMap<>(Map.of(// L157: "config_id", "W01", // L158: "doc_id", "1", // L159: "url", "http://test.com/001"// L160: ))); L161: documentSizeByQuery = oldDocList.size(); L162: assertEquals(0, indexingHelper.deleteOldDocuments(client, docList)); L163: assertEquals(1, docList.size());...
    github.com/codelibs/fess/src/test/java/org/code...
    Wed Jul 24 08:54:24 UTC 2024
      23.4K bytes
  4. ApiAdminSearchlistAction.java

    messages.addErrorsResultSizeExceeded(GLOBAL)); L98: } L99: L100: throwValidationErrorApi(messages -> messages.addErrorsInvalidQueryUnknown(GLOBAL)); L101: return null; // ignore L102: } L103: L104: // GET /api/admin/searchlist/doc/{doc_id} L105: @Execute L106: public JsonResponse<ApiResult> get$doc(final String id) { L107: return asJson(new ApiDocResponse().doc(searchEngineClient.getDocument(fessConfig.getIndexDocumentUpdateIndex(), builder -> { L108: build...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Jul 24 09:03:45 UTC 2024
      10.2K bytes
  5. openapi-user.yaml

    NotFound' L440: '500': L441: $ref: '#/components/responses/InternalServerError' L442: L443: /documents/{docId}/favorite: L444: post: L445: tags: L446: - favorite L447: summary: Set a favorite mark L448: description: Set a favorite mark to the document L449: operationId: setFavorite L450: parameters: L451: - name: docId L452: in: path L453: description: Document ID to be favorited L454: required: true L455: ...
    github.com/codelibs/fess/src/main/config/openap...
    Thu May 09 06:31:27 UTC 2024
      21.6K bytes
  6. SearchApiManager.java

    null) { L611: throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "docId is empty."); L612: } L613: final String docId = docIdObj.toString(); L614: final String queryId = request.getParameter("queryId"); L615: L616: final String[] docIds = userInfoHelper.getResultDocIds(URLDecoder.decode(queryId, Constants.UTF_8)); L617: if (docIds == null) { L618: throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST,...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  7. fess_config.properties

    al_password=admin L298: L299:# field names L300:index.field.favorite_count=favorite_count L301:index.field.click_count=click_count L302:index.field.config_id=config_id L303:index.field.expires=expires L304:index.field.url=url L305:index.field.doc_id=doc_id L306:index.field.id=_id L307:index.field.version=_version L308:index.field.seq_no=_seq_no L309:index.field.primary_term=_primary_term L310:index.field.lang=lang L311:index.field.has_cache=has_cache L312:index.field.last_modified=last_modified ...
    github.com/codelibs/fess/src/main/resources/fes...
    Tue Oct 01 14:13:38 UTC 2024
      30.9K bytes
  8. FessConfig.java

    String INDEX_FIELD_EXPIRES = "index.field.expires"; L567: L568: /** The key of the configuration. e.g. url */ L569: String INDEX_FIELD_URL = "index.field.url"; L570: L571: /** The key of the configuration. e.g. doc_id */ L572: String INDEX_FIELD_doc_id = "index.field.doc_id"; L573: L574: /** The key of the configuration. e.g. _id */ L575: String INDEX_FIELD_ID = "index.field.id"; L576: L577: /** The key of the configuration. e.g. _version */ L578: String INDEX_FIELD_VERSION =...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  9. SearchHelper.java

    builder.setQuery(boolQuery); L307: builder.setFetchSource(fields, null); L308: queryHelper.processSearchPreference(builder, userBean, docId); L309: return true; L310: }); L311: L312: } L313: L314: public List<Map<String, Object>> getDocumentListByDocIds(final String[] docIds, final String[] fields, L315: final OptionalThing<FessUserBean> userBean, final SearchRequestType searchRequestType) { L316: final FessConfig fessConfig...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      19.1K bytes
  10. CrawlTestBase.java

    ation/json").body(scrollBody).get(getEsUrl() + "/_search/scroll"); L195: jsonPath = JsonPath.from(response.asString()); L196: } L197: L198: for (String docId : docIds) { L199: given().contentType("application/json").delete(getEsUrl() + "/" + DOC_INDEX_NAME + "/" + docId); L200: } L201: } L202: L203: protected static List<Map<String, Object>> readCrawlingInfo(final String configId) { L204: final List<Map<String, Object>> logList = readLogItems("crawlinginfo");...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
Back to top