Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for load3 (0.15 sec)

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

        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            load();
        }
    
        @Override
        public int load() {
            final List<LabelType> labelTypeList = ComponentUtil.getComponent(LabelTypeService.class).getLabelTypeList();
            buildLabelTypeItems(labelTypeList);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                .expireAfterWrite(5, TimeUnit.MINUTES).build(new CacheLoader<ArtifactType, Artifact[]>() {
                    @Override
                    public Artifact[] load(final ArtifactType key) {
                        final List<Artifact> list = new ArrayList<>();
                        for (final String url : getRepositories()) {
                            if (url.endsWith(".yaml")) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    }
                    return data.getFacetResponse();
                });
            } catch (final ExecutionException e) {
                throw new FessSystemException("Cannot load facet from cache.", e);
            }
        }
    
        public String createHighlightText(final HighlightField highlightField) {
            final Text[] fragments = highlightField.fragments();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            updateConfigListenerMap.put("PathMapping", () -> Integer.toString(ComponentUtil.getPathMappingHelper().load()));
            updateConfigListenerMap.put("RelatedContent", () -> Integer.toString(ComponentUtil.getRelatedContentHelper().load()));
            updateConfigListenerMap.put("RelatedQuery", () -> Integer.toString(ComponentUtil.getRelatedQueryHelper().load()));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            this.searchers[0] = searcher;
        }
    
        public void register(final RankFusionSearcher searcher) {
            if (logger.isDebugEnabled()) {
                logger.debug("Load {}", searcher.getClass().getSimpleName());
            }
            final RankFusionSearcher[] newSearchers = Arrays.copyOf(searchers, searchers.length + 1);
            newSearchers[newSearchers.length - 1] = searcher;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                    .expireAfterWrite(userCheckInterval, TimeUnit.MILLISECONDS)//
                    .build(new CacheLoader<String, UserInfo>() {
                        @Override
                        public UserInfo load(final String key) throws Exception {
                            return storeUserInfo(key);
                        }
                    });
            searchLogLogger = LogManager.getLogger(loggerName);
        }
    
    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/fess/app/web/admin/backup/AdminBackupAction.java

        }
    
        private void importSystemProperties(final String fileName, final File tempFile) {
            try (final InputStream in = new FileInputStream(tempFile)) {
                ComponentUtil.getSystemProperties().load(in);
            } catch (final IOException e) {
                logger.warn("Failed to process system.properties file: {}", fileName, e);
            } finally {
                deleteTempFile(tempFile);
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        public static final String FESS_CONFIG_PREFIX = "fess.config.";
    
        public static final String XERCES_FEATURE_PREFIX = "http://apache.org/xml/features/";
    
        public static final String LOAD_EXTERNAL_DTD_FEATURE = "nonvalidating/load-external-dtd";
    
        public static final String FESEN_TYPE_CLOUD = "cloud";
    
        public static final String FESEN_TYPE_AWS = "aws";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    job.max.crawler.processes=0
    job.default.script=groovy
    
    processors=0
    java.command.path=java
    python.command.path=python
    path.encoding=UTF-8
    use.own.tmp.dir=true
    max.log.output.length=4000
    adaptive.load.control=50
    supported.uploaded.js.extentions=js
    supported.uploaded.css.extentions=css
    supported.uploaded.media.extentions=jpg,jpeg,gif,png,swf
    supported.uploaded.files=license.properties
    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)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            final StateData stateData = validateState(request.getSession(), params.containsKey(STATE) ? params.get(STATE).get(0) : null);
            if (logger.isDebugEnabled()) {
                logger.debug("load {}", stateData);
            }
    
            final AuthenticationResponse authResponse = parseAuthenticationResponse(urlBuf.toString(), params);
            if (authResponse instanceof final AuthenticationSuccessResponse oidcResponse) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
Back to top