Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for docid1 (1.42 sec)

  1. src/main/resources/fess_indices/fess_log.click_log/click_log.json

    {
        "properties": {
          "urlId": {
            "type": "keyword"
          },
          "docId": {
            "type": "keyword"
          },
          "queryId": {
            "type": "keyword"
          },
          "userSessionId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          },
          "order": {
            "type": "integer"
          },
          "requestedAt": {
            "type": "date",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Feb 24 22:07:26 UTC 2019
    - 544 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                for (final Map<String, Object> map : documentItems) {
                    final Object docId = map.get(fessConfig.getIndexFieldDocId());
                    if (docId != null && docId.toString().length() > 0) {
                        docIdList.add(docId.toString());
                    }
                }
    
                if (!docIdList.isEmpty()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. src/main/config/es/fess_log_click_log.json

    {
      "fess_log.click_log" : {
        "aliases" : { },
        "mappings" : {
          "click_log" : {
            "properties" : {
              "urlId" : {
                "type" : "keyword"
              },
              "docId" : {
                "type" : "keyword"
              },
              "order" : {
                "type" : "integer"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "queryRequestedAt" : {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 30 05:55:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  4. src/main/config/es/fess_log_favorite_log.json

        "aliases" : { },
        "mappings" : {
          "favorite_log" : {
            "properties" : {
              "createdAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "docId" : {
                "type" : "keyword"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "url" : {
                "type" : "keyword"
              },
              "userInfoId" : {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Nov 05 07:28:42 UTC 2017
    - 855 bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_log.favorite_log/favorite_log.json

    {
        "properties": {
          "userInfoId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          },
          "docId": {
            "type": "keyword"
          },
          "queryId": {
            "type": "keyword"
          },
          "createdAt": {
            "type": "date",
            "format": "date_optional_time"
          }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Feb 24 22:07:26 UTC 2019
    - 335 bytes
    - Viewed (0)
  6. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 12 02:18:38 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            Map<String, Object> dataMap = new HashMap<>();
            dataMap.put("url", "http://example.com/test");
            dataMap.put("doc_id", "existing-doc-id");
    
            indexUpdateCallback.store(paramMap, dataMap);
    
            // Should keep existing doc_id
            assertEquals("existing-doc-id", dataMap.get("doc_id"));
        }
    
        public void test_concurrentStore() throws Exception {
            // Test thread safety
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

     * Contains parameters for document caching and error page display.
     */
    public class CacheForm {
    
        /** Document ID for cache operations. */
        @Required
        @Size(max = 100)
        public String docId;
    
        /** Highlight query parameters. */
        public String[] hq;
    
        /** Search query parameter for error page. */
        public String q;
    
        /** Number of results parameter for error page. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

     */
    public class ThumbnailForm {
    
        /**
         * The document ID for which to retrieve the thumbnail.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
         * The query ID associated with the search request.
         */
        @Required
        public String queryId;
    
        /**
         * The search query string for error page display.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

        }
    
        /**
         * Document identifier for the target document to redirect to.
         * This is required and limited to 100 characters.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
         * Redirect target or return URL parameter.
         * This is required and limited to 10000 characters to accommodate long URLs.
         */
        @Size(max = 10000)
        @Required
        public String rt;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top