Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for aquele (0.2 sec)

  1. src/main/java/org/codelibs/fess/entity/PingResponse.java

        private static final String DELAYED_UNASSIGNED_SHARDS = "delayed_unassigned_shards";
        private static final String TASK_MAX_WAIT_TIME_IN_QUEUE_IN_MILLIS = "task_max_waiting_in_queue_millis";
        private static final String ACTIVE_SHARDS_PERCENT_AS_NUMBER = "active_shards_percent_as_number";
        private static final String ACTIVE_PRIMARY_SHARDS = "active_primary_shards";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.thumbnail_queue";
        }
    
        @Override
        public String asEsIndexType() {
            return "thumbnail_queue";
        }
    
        @Override
        public String asEsSearchType() {
            return "thumbnail_queue";
        }
    
        @Override
        public ThumbnailQueueDbm asDBMeta() {
            return ThumbnailQueueDbm.getInstance();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

        @Override
        public ThumbnailQueueDbm asDBMeta() {
            return ThumbnailQueueDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "thumbnail_queue";
        }
    
        // ===================================================================================
        //                                                                              Source
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    "fess_config.request_header", //
                    "fess_config.role_type", //
                    "fess_config.scheduled_job", //
                    "fess_config.thumbnail_queue", //
                    "fess_config.web_authentication", //
                    "fess_config.web_config", //
                    "fess_user.group", //
                    "fess_user.role", //
                    "fess_user.user", //
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                urlFilterService.delete(sid);
            } catch (final Exception e) {
                logger.warn("Failed to delete UrlFilter for {}", sid, e);
            }
    
            try {
                // clear queue
                urlQueueService.clearCache();
                urlQueueService.delete(sid);
            } catch (final Exception e) {
                logger.warn("Failed to delete UrlQueue for {}", sid, e);
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                final Queue<SearchLog> queue = searchLogQueue;
                searchLogQueue = new ConcurrentLinkedQueue<>();
                processSearchLogQueue(queue);
            }
    
            if (!clickLogQueue.isEmpty()) {
                final Queue<ClickLog> queue = clickLogQueue;
                clickLogQueue = new ConcurrentLinkedQueue<>();
                processClickLogQueue(queue);
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/core/crypto/CachedCipher.java

        protected String transformation = RSA;
    
        protected String key;
    
        protected String charsetName = CoreLibConstants.UTF_8;
    
        protected Queue<Cipher> encryptoQueue = new ConcurrentLinkedQueue<>();
    
        protected Queue<Cipher> decryptoQueue = new ConcurrentLinkedQueue<>();
    
        public byte[] encrypto(final byte[] data) {
            final Cipher cipher = pollEncryptoCipher();
            byte[] encrypted;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsThumbnailQueueCB.java

        @Override
        public ThumbnailQueueDbm asDBMeta() {
            return ThumbnailQueueDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "thumbnail_queue";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                if (!cleanup) {
                    return executorService.submit(() -> process(fessConfig, entity));
                }
                if (logger.isDebugEnabled()) {
                    logger.debug("Removing thumbnail queue: {}", entity);
                }
                return null;
            }).filter(f -> f != null).forEach(f -> {
                try {
                    f.get();
                } catch (final Exception e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ThumbnailQueueDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "thumbnail_queue";
        protected final String _tableDispName = "thumbnail_queue";
        protected final String _tablePropertyName = "ThumbnailQueue";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
Back to top