Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 301 for Document (0.05 sec)

  1. guava/src/com/google/common/escape/Escaper.java

     * (such as an XML document). Typically (but not always), the inverse process of "unescaping" the
     * text is performed automatically by the relevant parser.
     *
     * <p>For example, an XML escaper would convert the literal string {@code "Foo<Bar>"} into {@code
     * "Foo&lt;Bar&gt;"} to prevent {@code "<Bar>"} from being confused with an XML tag. When the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java

     * Typically used when a document or resource is not available during crawling or indexing.
     */
    public class ContentNotFoundException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new ContentNotFoundException with the specified parent URL and URL.
         *
         * @param parentUrl the URL of the parent document
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            assertEquals("", result);
        }
    
        public void test_execute_withCustomIndexName() {
            // Configure custom index name
            documentUpdateIndex = "custom.document.index";
    
            // Re-register FessConfig with updated index name
            fessConfig = new TestFessConfig() {
                @Override
                public String getIndexFieldExpires() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/suggest/SuggestBody.java

     * the number of total, document, and query words.
     */
    public class SuggestBody extends SuggestForm {
        /**
         * Constructs a new suggest body.
         */
        public SuggestBody() {
            // do nothing
        }
    
        /** The total number of words in the suggest index. */
        public Long totalWordsNum;
    
        /** The number of words from documents. */
        public Long documentWordsNum;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            }
            return false;
        }
    
        /**
         * Gets the image filename for a document based on its document map.
         *
         * @param docMap the document data map
         * @return the generated image filename
         */
        protected String getImageFilename(final Map<String, Object> docMap) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

                    // Simulate storing documents
                    Map<String, Object> doc1 = new HashMap<>();
                    doc1.put("id", "1");
                    doc1.put("title", "Document 1");
                    callback.store(initParamMap, doc1);
    
                    Map<String, Object> doc2 = new HashMap<>();
                    doc2.put("id", "2");
                    doc2.put("title", "Document 2");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            }
        }
    
        /**
         * Represents an API response for a single document.
         */
        public static class ApiDocResponse extends ApiResponse {
            /**
             * Constructs an empty ApiDocResponse.
             */
            public ApiDocResponse() {
                // NOP
            }
    
            /**
             * The document object.
             */
            protected Object doc;
    
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/main/webapp/js/clipboard.min.js

    370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        dataMap.put(baseKey, value);
                    });
        }
    
        /**
         * Deletes a document from the search index based on the URL in the data map.
         * For recursive operations, performs immediate deletion. For single documents,
         * adds to the delete cache for batch processing.
         *
         * @param paramMap the data store parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_nl.properties

    errors.target_file_does_not_exist = Bestand {0} bestaat niet.
    errors.failed_to_delete_file = Kan bestand {0} niet verwijderen.
    errors.docid_not_found = Document-ID niet gevonden. Oorzaak: {0}
    errors.document_not_found = URL van document-ID niet gevonden. Oorzaak: {0}
    errors.not_load_from_server = Kan niet laden vanaf deze server. Oorzaak: {0}
    errors.failed_to_start_job = Kan taak {0} niet starten.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top