Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dataService (0.18 sec)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

        }
    
        // Test run method with null DataService
        public void test_run_nullDataService() {
            indexUpdater.dataService = null;
            try {
                indexUpdater.run();
                fail("Should throw FessSystemException");
            } catch (FessSystemException e) {
                assertEquals("DataService is null.", e.getMessage());
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        /** OpenSearch client for index operations */
        @Resource
        protected SearchEngineClient searchEngineClient;
    
        /** Service for managing crawled document data */
        @Resource
        protected DataService<OpenSearchAccessResult> dataService;
    
        /** Service for managing URL crawling queue */
        @Resource
        protected UrlQueueService<OpenSearchUrlQueue> urlQueueService;
    
        /** Service for URL filtering operations */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       * Example usage:
       *
       * {@snippet :
       * FluentFuture<RowKey> rowKeyFuture = FluentFuture.from(indexService.lookUp(query));
       * ListenableFuture<QueryResult> queryFuture =
       *     rowKeyFuture.transformAsync(dataService::readFuture, executor);
       * }
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

       * Example usage:
       *
       * {@snippet :
       * ListenableFuture<RowKey> rowKeyFuture = indexService.lookUp(query);
       * ListenableFuture<QueryResult> queryFuture =
       *     transformAsync(rowKeyFuture, dataService::readFuture, executor);
       * }
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
       * the warnings the {@link MoreExecutors#directExecutor} documentation.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
Back to top