Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for SystemHelper (0.25 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

    import com.google.common.cache.LoadingCache;
    import com.ibm.icu.util.ULocale;
    
    import jakarta.annotation.PostConstruct;
    import jakarta.annotation.PreDestroy;
    
    public class SystemHelper {
    
        private static final Logger logger = LogManager.getLogger(SystemHelper.class);
    
        protected final Map<String, String> designJspFileNameMap = new LinkedHashMap<>();
    
        protected final AtomicBoolean forceStop = new AtomicBoolean(false);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

                if (permissions == null) {
                    final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
                    final Set<String> permissionSet = new HashSet<>();
                    permissionSet.add(systemHelper.getSearchRoleByUser(name));
                    stream(groups).of(stream -> stream.forEach(s -> permissionSet.add(systemHelper.getSearchRoleByGroup(s))));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                        }
                        if (!systemHelper.calibrateCpuLoad(timeout)) {
                            breakCursor = true;
                        }
                    }
                });
            };
        }
    
        public static Consumer<Writer> getUserInfoNdjsonWriteCall() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
            runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameUpgrade()));
        }
    
        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        protected UrlFilterService urlFilterService;
    
        @Resource
        protected ClickLogBhv clickLogBhv;
    
        @Resource
        protected FavoriteLogBhv favoriteLogBhv;
    
        @Resource
        protected SystemHelper systemHelper;
    
        @Resource
        protected IndexingHelper indexingHelper;
    
        protected boolean finishCrawling = false;
    
        protected long executeTime;
    
        protected long documentSize;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            }
            return idList.size();
        }
    
        protected void process(final FessConfig fessConfig, final ThumbnailQueue entity) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            systemHelper.calibrateCpuLoad();
    
            if (logger.isDebugEnabled()) {
                logger.debug("Processing thumbnail: {}", entity);
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                    return Constants.FALSE;
                }
            }
    
            return Constants.TRUE;
        }
    
        protected synchronized void initDocUrlPattern() {
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            if (includedDocUrlPatterns == null) {
                if (StringUtil.isNotBlank(getIncludedDocUrls())) {
                    final List<Pattern> urlPatterList = new ArrayList<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            final int multiprocessCrawlingCount = ComponentUtil.getFessConfig().getCrawlingThreadCount();
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            ComponentUtil.getFessConfig();
            final ProtocolHelper protocolHelper = ComponentUtil.getProtocolHelper();
    
            final long startTime = systemHelper.getCurrentTimeAsLong();
    
            final List<String> sessionIdList = new ArrayList<>();
            crawlerList.clear();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/timer/MonitorTarget.java

            buf.append(tempBuf.toString());
            return buf;
        }
    
        protected StringBuilder appendTimestamp(final StringBuilder buf) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            append(buf, "timestamp", () -> FessFunctions.formatDate(systemHelper.getCurrentTime()));
            return buf;
        }
    
        protected StringBuilder appendException(final StringBuilder buf, final Exception exception) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchHelper.java

        public void search(final SearchRequestParams searchRequestParams, final SearchRenderData data,
                final OptionalThing<FessUserBean> userBean) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            final long startTime = systemHelper.getCurrentTimeAsLong();
            final long requestedTime = startTime;
    
            final SearchRequestParams params = rewrite(searchRequestParams);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top