Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for delegation (0.06 sec)

  1. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  2. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            CrawlingInfoService crawlingInfoService = new CrawlingInfoService() {
                @Override
                public void deleteBefore(long time) {
                    throw new RuntimeException("Crawling info deletion failed");
                }
            };
    
            SearchLogService searchLogService = new SearchLogService() {
                @Override
                public void deleteBefore(int days) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  4. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            StopwordsItem item = new StopwordsItem(1, "word");
            assertFalse(item.isDeleted());
    
            item.setNewInput("new");
            assertFalse(item.isDeleted());
    
            // Mark for deletion with empty string
            item.setNewInput("");
            assertTrue(item.isDeleted());
    
            item.setNewInput(null);
            assertFalse(item.isDeleted());
        }
    
        public void test_hashCode() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java

     *
     * @author Chris Nokleberg
     */
    @NullUnmarked
    public class WrappingExecutorServiceTest extends TestCase {
      private static final String RESULT_VALUE = "ran";
    
      // Uninteresting delegations
      public void testDelegations() throws InterruptedException {
        MockExecutor mock = new MockExecutor();
        TestExecutor testExecutor = new TestExecutor(mock);
        assertFalse(testExecutor.awaitTermination(10, MILLISECONDS));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Suppliers.java

       * on the deserialized instance.
       *
       * <p>When the underlying delegate throws an exception then this memoizing supplier will keep
       * delegating calls until it returns valid data.
       *
       * <p>If {@code delegate} is an instance created by an earlier call to {@code memoize}, it is
       * returned directly.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Suppliers.java

       * on the deserialized instance.
       *
       * <p>When the underlying delegate throws an exception then this memoizing supplier will keep
       * delegating calls until it returns valid data.
       *
       * <p>If {@code delegate} is an instance created by an earlier call to {@code memoize}, it is
       * returned directly.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

        /**
         * Deletes a specific search log entry.
         *
         * @param form the edit form containing the log entry information
         * @return HTML response redirecting to the list page after deletion
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse delete(final EditForm form) {
            verifyCrudMode(form.crudMode, CrudMode.DETAILS);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
Back to top