Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 60 (0.15 sec)

  1. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

            // Install
            {
                checkPutMethod(targetMap, getInstallEndpointSuffix()).then().body("response.status", equalTo(0));
    
                boolean done = false;
                for (int i = 0; i < 60; i++) {
                    final List<Map<String, Object>> installed = checkGetMethod(Collections.emptyMap(), getInstalledEndpointSuffix() + "/")
                            .body().jsonPath().get("response.plugins");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                    totalCount += count;
                }
                executorService.shutdown();
                executorService.awaitTermination(60, TimeUnit.SECONDS);
            } catch (final InterruptedException e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Interrupted.", e);
                }
            } finally {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/JobHelper.java

    import org.lastaflute.job.subsidiary.CronParamsSupplier;
    
    public class JobHelper {
        private static final Logger logger = LogManager.getLogger(JobHelper.class);
    
        protected int monitorInterval = 60 * 60;// 1hour
    
        protected ThreadLocal<LaJobRuntime> jobRuntimeLocal = new ThreadLocal<>();
    
        public void register(final ScheduledJob scheduledJob) {
            final JobManager jobManager = ComponentUtil.getJobManager();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

    public class JobLogService {
    
        @Resource
        protected JobLogBhv jobLogBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        protected long expiredJobInterval = 2 * 60 * 60 * 1000L; // 2hours
    
        public List<JobLog> getJobLogList(final JobLogPager jobLogPager) {
    
            final PagingResultBean<JobLog> jobLogList = jobLogBhv.selectPage(cb -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/test/resources/before_script.sh

      cat ${temp_json_file}
      if [[ x"${status}" = x200 ]] ; then
        break
      else
        error_count=$((error_count + 1))
      fi
      if [[ ${error_count} -ge 60 ]] ; then
        echo "Fess is not available."
        cat ${temp_log_file} ./fess-*/logs/*.log
        exit 1
      fi
      sleep 1
    done
    
    pushd /tmp >/dev/null
    git clone https://github.com/codelibs/fess-testdata.git
    Shell Script
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 863 bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    suggest.update.contents.limit.num=10000
    suggest.update.contents.limit.doc.size=50000
    suggest.source.reader.scroll.size=1
    suggest.popular.word.cache.size=1000
    suggest.popular.word.cache.expire=60
    suggest.search.log.permissions={user}guest,{role}guest
    suggest.system.monitor.interval=60
    
    # ----------------------------------------------------------
    #                                                      LDAP
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

        protected String headerKey;
    
        protected boolean encryptedHeaderValue = true;
    
        protected String cookieKey;
    
        protected boolean encryptedCookieValue = true;
    
        protected long maxAge = 30 * 60; // sec
    
        protected Map<String, String> cookieNameMap;
    
        protected final List<String> defaultRoleList = new ArrayList<>();
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        protected int thumbnailTaskQueueSize = 10000;
    
        protected int thumbnailTaskBulkSize = 100;
    
        protected long thumbnailTaskQueueTimeout = 10 * 1000L;
    
        protected long noImageExpired = 24 * 60 * 60 * 1000L; // 24 hours
    
        protected int splitHashSize = 10;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    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)
  9. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                    // timeToLive minutes
                    final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
                    return new Date(now + timeToLive.longValue() * 1000 * 60);
                }
            }
            return documentExpires != null ? new Date(documentExpires) : null;
        }
    
        protected long getExpiredTime(final int days) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class PurgeThumbnailJob {
        private static final Logger logger = LogManager.getLogger(PurgeThumbnailJob.class);
    
        private long expiry = 30 * 24 * 60 * 60 * 1000L;
    
        public String execute() {
            try {
                final long count = ComponentUtil.getThumbnailManager().purge(getExpiry());
                return "Deleted " + count + " thumbnail files.";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
Back to top