Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for docs (0.25 sec)

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

    public class DataIndexHelper {
    
        private static final Logger logger = LogManager.getLogger(DataIndexHelper.class);
    
        private static final String DELETE_OLD_DOCS = "delete_old_docs";
    
        private static final String KEEP_EXPIRES_DOCS = "keep_expires_docs";
    
        protected long crawlingExecutionInterval = Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL;
    
        protected int crawlerPriority = Thread.NORM_PRIORITY;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            LabelType[] labelTypes = parser.getLabelTypes();
            assertEquals(3, labelTypes.length);
        }
    
        public void test_escape() {
            // https://www.google.com/support/enterprise/static/gsa/docs/admin/70/gsa_doc_set/admin_crawl/url_patterns.html#1076127
            assertEscapePattern("", "# Test");
            assertEscapePattern(".*\\Q!/\\E.*", "!/");
            assertEscapePattern("\\Qindex.html\\E", "index.html");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

            }
    
            Map<String, Object> doc = null;
            try {
                doc = searchHelper.getDocumentByDocId(form.docId,
                        new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldConfigId() }, getUserBean()).orElse(null);
            } catch (final Exception e) {
                logger.warn("Failed to request: {}", form.docId, e);
            }
            if (doc == null) {
    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)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * The value is, e.g. false <br>
         * comment: Does it enable the Framework internal debug? (true only when emergency)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getFrameworkDebug();
    
        /**
         * Is the property for the key 'framework.debug' true? <br>
         * The value is, e.g. false <br>
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

            }
            return themeName;
        }
    
        protected void closeQuietly(final Path dir) {
            if (Files.notExists(dir)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("{} does not exists.", dir);
                }
                return;
            }
            try (Stream<Path> walk = Files.walk(dir, FileVisitOption.FOLLOW_LINKS)) {
                walk.sorted(Comparator.reverseOrder()).forEach(f -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ja.properties

    labels.maintenance_title_configuration=メンテナンス
    labels.number_of_shards_for_doc=シャード数
    labels.auto_expand_replicas_for_doc=最大レプリカ数
    labels.clear_crawler_index=Crawlerインデックス
    labels.clear_crawler_index_button=クロール用インデックスの削除
    labels.diagnostic_logs=診断
    labels.download_diagnostic_logs_button=ログのダウンロード
    labels.reload_doc_index=ドキュメントインデックスのリロード
    labels.reload_doc_index_button=リロード
    labels.plugin_title=プラグイン
    labels.plugin_list_name=プラグイン一覧
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  7. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            assertUrlLink(" ", "#not-found-docId");
        }
    
        private void assertUrlLink(String url, String expected) {
            Map<String, Object> doc = new HashMap<>();
            doc.put("doc_id", "docId");
            doc.put("url", url);
            assertEquals(expected, viewHelper.getUrlLink(doc));
        }
    
        public void test_replaceHighlightQueries() {
            String text;
            String[] queries;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                        }
                        return false;
                    }
                    if (logger.isDebugEnabled()) {
                        logger.debug("Path {} does not match the exclude path expression {} on {} of label.", path, excludedPaths, value);
                    }
                    return true;
                }
                if (includedPaths.matcher(path).matches()) {
    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)
  9. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                logger.debug("Found documents: {}", docList);
            }
            final Set<RequestData> urlSet = new HashSet<>(docList.size());
            for (final Map<String, Object> doc : docList) {
                final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class);
                if (StringUtil.isNotBlank(url)) {
                    urlSet.add(RequestDataBuilder.newRequestData().get().url(url).build());
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                    logger.info("ThumbnailGenerator is stopped.");
                }
                exitCode = Constants.EXIT_FAIL;
            } catch (final Throwable t) {
                logger.error("ThumbnailGenerator does not work correctly.", t);
                exitCode = Constants.EXIT_FAIL;
            } finally {
                if (systemMonitorTask != null) {
                    systemMonitorTask.cancel();
                }
    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)
Back to top