Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for docid (0.14 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/FavoriteLogDbm.java

                false, false, "LocalDateTime", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnDocId = cci("docId", "docId", null, null, String.class, "docId", null, false, false, false, "keyword",
                0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/exentity/FavoriteLog.java

                super.addFieldToSource(sourceMap, field, value);
            }
        }
    
        @Override
        public String toString() {
            return "FavoriteLog [createdAt=" + createdAt + ", url=" + url + ", docId=" + docId + ", queryId=" + queryId + ", userInfoId="
                    + userInfoId + ", docMeta=" + docMeta + "]";
        }
    
        @Override
        public String getEventType() {
            return "favorite";
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  3. 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" : {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Nov 05 07:28:42 GMT 2017
    - 855 bytes
    - Viewed (0)
  4. 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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K 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"
          }
        }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Feb 24 22:07:26 GMT 2019
    - 335 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                        }
                        return DocumentUtil.getValue(doc, fessConfig.getIndexFieldDocId(), String.class);
                    }).forEach(docId -> {
                        boolQuery.should(QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), docId));
                    });
    
                    if (boolQuery.hasClauses()) {
                        if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  7. 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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  8. 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()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/log/exentity/ClickLog.java

            }
        }
    
        @Override
        public String toString() {
            return "ClickLog [queryRequestedAt=" + queryRequestedAt + ", requestedAt=" + requestedAt + ", queryId=" + queryId + ", docId="
                    + docId + ", userSessionId=" + userSessionId + ", url=" + url + ", order=" + order + ", docMeta=" + docMeta + "]";
        }
    
        @Override
        public String getEventType() {
            return "click";
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java

    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class DeleteForm {
    
        @Size(max = 1000)
        public String q;
    
        @Required
        public String docId;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 878 bytes
    - Viewed (0)
Back to top