Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for docid (0.13 sec)

  1. 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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  2. 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",
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Feb 24 22:07:26 GMT 2019
    - 544 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setCreatedAt(toLocalDateTime(source.get("createdAt")));
                result.setDocId(DfTypeUtil.toString(source.get("docId")));
                result.setQueryId(DfTypeUtil.toString(source.get("queryId")));
                result.setUrl(DfTypeUtil.toString(source.get("url")));
                result.setUserInfoId(DfTypeUtil.toString(source.get("userInfoId")));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  4. 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" : {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jun 30 05:55:50 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class CacheForm {
    
        @Required
        @Size(max = 100)
        public String docId;
    
        public String[] hq;
    
        // for error page
    
        public String q;
    
        public String num;
    
        public String sort;
    
        public String lang;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper.setForceStop(false);
            assertFalse(systemHelper.isForceStop());
        }
    
        public void test_generateDocId() {
            final String docId = systemHelper.generateDocId(Collections.emptyMap());
            assertNotNull(docId);
            assertEquals(32, docId.length());
        }
    
        public void test_abbreviateLongText() {
            assertEquals("", systemHelper.abbreviateLongText(""));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    							data-order="${s.index}"
    						> <img src="${fe:url('/images/blank.png')}" alt="thumbnail"
    							data-src="${fe:url('/thumbnail/')}?docId=${f:u(doc.doc_id)}&queryId=${f:u(queryId)}" class="thumbnail"
    						>
    						</a>
    					</div>
    					</c:if>
    					<div class="description">${doc.content_description}</div>
    				</div>
    				<div class="site text-truncate">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  8. src/main/webapp/WEB-INF/view/searchResults.jsp

    							data-order="${s.index}"
    						> <img src="${fe:url('/images/blank.png')}" alt="thumbnail"
    							data-src="${fe:url('/thumbnail/')}?docId=${f:u(doc.doc_id)}&queryId=${f:u(queryId)}" class="thumbnail"
    						>
    						</a>
    					</div>
    					</c:if>
    					<div class="description">${doc.content_description}</div>
    				</div>
    				<div class="site text-truncate">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                        </button>
                                                        <input type="hidden" name="docId" id="docId"/>
                                                        <button type="submit" class="btn btn-outline-light"
                                                                name="delete"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Sep 24 13:09:22 GMT 2020
    - 20K bytes
    - Viewed (1)
  10. 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
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
Back to top