Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for thumbnailQueueBhv (0.68 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/exbhv/ThumbnailQueueBhv.java

    import java.util.regex.Pattern;
    
    import org.codelibs.fess.opensearch.config.bsbhv.BsThumbnailQueueBhv;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    public class ThumbnailQueueBhv extends BsThumbnailQueueBhv {
        private String indexName = null;
    
        @Override
        protected String asEsIndex() {
            if (indexName == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/resources/esflute_config.xml

    	<component name="scheduledJobBhv" class="org.codelibs.fess.opensearch.config.exbhv.ScheduledJobBhv"/>
    	<component name="thumbnailQueueBhv" class="org.codelibs.fess.opensearch.config.exbhv.ThumbnailQueueBhv"/>
    	<component name="webAuthenticationBhv" class="org.codelibs.fess.opensearch.config.exbhv.WebAuthenticationBhv"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            // The process method needs actual ThumbnailQueueBhv and other components
            assertTrue(true);
        }
    
        // Test process with unavailable generator
        public void test_process_unavailableGenerator() {
            // Skip this test as it requires container components
            // The process method needs actual ThumbnailQueueBhv and other components
            assertTrue(true);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            taskList.clear();
            if (logger.isDebugEnabled()) {
                logger.debug("Storing {} thumbnail tasks.", list.size());
            }
            final ThumbnailQueueBhv thumbnailQueueBhv = ComponentUtil.getComponent(ThumbnailQueueBhv.class);
            thumbnailQueueBhv.batchInsert(list);
        }
    
        /**
         * Generates thumbnails using the provided executor service.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ThumbnailQueueDbm.java

            return "org.codelibs.fess.opensearch.config.cbean.ThumbnailQueueCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.opensearch.config.exbhv.ThumbnailQueueBhv";
        }
    
        // ===================================================================================
        //                                                                         Object Type
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top