- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for delegation (2.16 sec)
-
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
protected static final String SPNEGO_EXCLUDE_DIRS = "spnego.exclude.dirs"; /** Configuration key for enabling delegation in SPNEGO authentication. */ protected static final String SPNEGO_ALLOW_DELEGATION = "spnego.allow.delegation"; /** Configuration key for allowing localhost authentication bypass. */ protected static final String SPNEGO_ALLOW_LOCALHOST = "spnego.allow.localhost";
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
* This method first refreshes the index, then performs the deletion, and logs the result. * * @param searchEngineClient the search engine client to use for deletion * @param index the index name to delete documents from * @param queryBuilder the query to match documents for deletion * @return the number of documents that were deleted */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* * <p>The deletion process:</p> * <ul> * <li>Checks if old document deletion is enabled</li> * <li>Builds a query to find old documents for this configuration</li> * <li>Optionally preserves expired documents based on configuration</li> * <li>Executes the deletion query against the search engine</li> * </ul> */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
* For recursive operations, performs immediate deletion. For single documents, * adds to the delete cache for batch processing. * * @param paramMap the data store parameters * @param dataMap the data map containing the URL to delete * @return true if the deletion was processed successfully, false otherwise */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
/** * Authentication chain implementation that executes external commands for user operations. * Provides user management through command-line tool execution for password changes and user deletion. */ public class CommandChain implements AuthenticationChain { private static final Logger logger = LogManager.getLogger(CommandChain.class); /** Working directory for command execution. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java
// Create a temporary file File tempFile = File.createTempFile("test-", ".tmp"); try (FileOutputStream fos = new FileOutputStream(tempFile)) { fos.write("Test data for deletion".getBytes()); } String filePath = tempFile.getAbsolutePath(); assertTrue("Temp file should exist before opening stream", tempFile.exists());Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 7.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
* @param index The index to delete from. * @param type The document type (deprecated, no longer used). * @param queryBuilder The query to match documents for deletion. * @return The number of deleted documents. * @throws OpenSearchAccessException if the deletion fails. * @deprecated Use {@link #deleteByQuery(String, QueryBuilder)} instead. The type parameter is no longer used. */ @DeprecatedRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
} return themeName; } /** * Recursively deletes a directory and all its contents. * Does not throw exceptions, only logs warnings if deletion fails. * * @param dir the directory to delete */ protected void closeQuietly(final Path dir) { if (Files.notExists(dir)) { if (logger.isDebugEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
} /** * File visitor for purging old thumbnail files. */ protected static class FilePurgeVisitor implements FileVisitor<Path> { /** * Expiry time threshold for file deletion. */ protected final long expiry; /** * Count of processed files. */ protected long count; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
}); } /** * Deletes a file from the storage system. * * @param id the encoded ID of the file to delete * @return HTML response redirecting to the storage list after deletion */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final String id) { final PathInfo pi = convertToItem(id); if (StringUtil.isEmpty(pi.getName())) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 22.1K bytes - Viewed (0)