- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 486 for Document (0.09 sec)
-
src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java
assertTrue(entry2.isComplete()); assertTrue(entry1.hasChild("document.txt")); assertFalse(entry1.hasChild("subfolder")); assertTrue(entry2.hasChild("subfolder")); assertFalse(entry2.hasChild("document.txt")); // Test individual change notification directoryLeaseManager.handleDirectoryChange(dir1, "document.txt", DirectoryChangeNotifier.DirectoryChangeType.FILE_REMOVED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DomUtil.java
return new String(buf); } /** * Converts a {@link Document} to a string. * * @param document * The document. Must not be {@literal null}. * @return The converted string. */ public static String toString(final Document document) { assertArgumentNotNull("document", document); final StringBuilder buf = new StringBuilder(1000);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/osdd/OsddAction.java
// ============== /** * Returns the OSDD document. * * @return the OSDD document as a stream response */ @Execute public ActionResponse index() { if (isLoginRequired()) { return redirectToLogin(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java
} /** * Deletes document-related suggest words. * * @return JSON response indicating success or failure */ // DELETE /api/admin/suggest/document @Execute public JsonResponse<ApiResult> delete$document() { if (!suggestHelper.deleteDocumentWords()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeDocJob.java
/** * Default constructor for PurgeDocJob. * Creates a new instance of the document purging job with default settings. */ public PurgeDocJob() { // Default constructor } /** * Executes the document purging job. * Removes all documents from the search index that have expired based on their expires field. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java
break; default: break; } return OptionalEntity.empty(); } /** * Get a boost document rule from a form. * @param form The create form. * @return An optional entity of a boost document rule. */ public static OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final CreateForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
} /** * Deletes all document-based words from the suggest index. * * @return true if the operation was successful, false otherwise. */ public boolean deleteDocumentWords() { final SuggestDeleteResponse response = suggester.indexer().deleteDocumentWords(); if (response.hasError()) { logger.warn("Failed to delete document words.", response.getErrors().get(0));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
$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 schema:
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.9K bytes - Viewed (0) -
misc/chrome/gophertool/popup.js
document.getElementById("inputbox").focus(); }); window.addEventListener("submit", function () { console.log("submitting form"); var box = document.getElementById("inputbox"); box.focus(); var t = box.value; if (t == "") { return false; } var success = function(url) { console.log("matched " + t + " to: " + url) box.value = ""; openURL(url);
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Sun Oct 21 17:05:21 UTC 2012 - 1020 bytes - Viewed (0)