Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getAccessResultList (0.06 seconds)

  1. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                        }
    
                        updateTime = systemHelper.getCurrentTimeAsLong();
    
                        List<OpenSearchAccessResult> arList = getAccessResultList(cb, cleanupTime);
                        if (arList.isEmpty()) {
                            emptyListCount++;
                        } else {
                            emptyListCount = 0; // reset
                        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            private boolean throwContainerNotAvailable = false;
            private boolean throwRuntimeException = false;
    
            @Override
            public List<OpenSearchAccessResult> getAccessResultList(Consumer<SearchRequestBuilder> cb) {
                if (throwContainerNotAvailable) {
                    throw new ContainerNotAvailableException("");
                }
                if (throwRuntimeException) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
Back to Top