Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 724 for Final (3.3 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

        }
    
        public ExecJob jvmOptions(final String... options) {
            Collections.addAll(this.jvmOptions, options);
            return this;
        }
    
        public ExecJob lastaEnv(final String env) {
            this.lastaEnv = env;
            return this;
        }
    
        protected void addSystemProperty(final List<String> cmdList, final String name, final String defaultValue, final String appendValue) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

    public class DefaultSearcher extends RankFusionSearcher {
    
        private static final Logger logger = LogManager.getLogger(DefaultSearcher.class);
    
        @Override
        protected SearchResult search(final String query, final SearchRequestParams params, final OptionalThing<FessUserBean> userBean) {
            final int pageSize = params.getPageSize();
            LaRequestUtil.getOptionalRequest().ifPresent(request -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

    public class PathMappingHelper extends AbstractConfigHelper {
    
        private static final Logger logger = LogManager.getLogger(PathMappingHelper.class);
    
        protected static final String FUNCTION_ENCODEURL_MATCHER = "function:encodeUrl";
    
        protected static final String GROOVY_MATCHER = "groovy:";
    
        protected final Map<String, List<PathMapping>> pathMappingMap = new HashMap<>();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

    public class CharMappingFile extends DictionaryFile<CharMappingItem> {
        private static final Logger logger = LogManager.getLogger(CharMappingFile.class);
    
        private static final String MAPPING = "mapping";
    
        List<CharMappingItem> mappingItemList;
    
        public CharMappingFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

    public class SearchResult {
    
        protected final List<Map<String, Object>> documentList;
        protected final long allRecordCount;
        protected final String allRecordCountRelation;
        protected final long queryTime;
        protected final boolean partialResults;
        protected final FacetResponse facetResponse;
    
        SearchResult(final List<Map<String, Object>> documentList, final long allRecordCount, final String allRecordCountRelation,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            }
    
        }
    
        public void deleteByConfigId(final String configId) {
            failureUrlBhv.queryDelete(cb -> {
                cb.query().setConfigId_Equal(configId);
            });
        }
    
        public void store(final CrawlingConfig crawlingConfig, final String errorName, final String url, final Throwable e) {
            if (e instanceof ContainerNotAvailableException) {
                return;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

                break;
            }
            return OptionalEntity.empty();
        }
    
        public static OptionalEntity<KeyMatch> getKeyMatch(final CreateForm form) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            final String username = systemHelper.getUsername();
            final long currentTime = systemHelper.getCurrentTimeAsLong();
            return getEntity(form, username, currentTime).map(entity -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

    public class NotificationHelper {
        private static final Logger logger = LogManager.getLogger(NotificationHelper.class);
    
        protected static final char LF = '\n';
    
        public void send(final CardView cardView, final SMailPostingDiscloser discloser) {
            sendToSlack(cardView, discloser);
            sendToGoogleChat(cardView, discloser);
        }
    
        protected void sendToSlack(final CardView cardView, final SMailPostingDiscloser discloser) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

            }
            return OptionalEntity.empty();
        }
    
        public static OptionalEntity<DuplicateHost> getDuplicateHost(final CreateForm form) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            final String username = systemHelper.getUsername();
            final long currentTime = systemHelper.getCurrentTimeAsLong();
            return getEntity(form, username, currentTime).map(entity -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

        protected void registerRolesAndLabels(final RenderData data) {
            RenderDataUtil.register(data, "roleTypeItems", roleTypeService.getRoleTypeList());
        }
    
        protected void registerHandlerNames(final RenderData data) {
            final String[] dataStoreNames = dataStoreFactory.getDataStoreNames();
            final List<Map<String, String>> itemList = new ArrayList<>();
            for (final String name : dataStoreNames) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top