Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Empty (0.25 sec)

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

        }
    
        protected String removeHighlightTag(final String str) {
            return str.replaceAll(originalHighlightTagPre, StringUtil.EMPTY).replaceAll(originalHighlightTagPost, StringUtil.EMPTY);
        }
    
        public HighlightInfo createHighlightInfo() {
            return LaRequestUtil.getOptionalRequest().map(req -> {
                final HighlightInfo highlightInfo = new HighlightInfo();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

            if ("/_plugin".equals(path) || path.startsWith("/_plugin/")) {
                processPluginRequest(request, response, path.replaceFirst("^/_plugin", StringUtil.EMPTY));
                return;
            }
    
            final Method httpMethod = Method.valueOf(request.getMethod().toUpperCase(Locale.ROOT));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                credentials = new NTCredentials(username, password == null ? StringUtil.EMPTY : password,
                        workstation == null ? StringUtil.EMPTY : workstation, domain == null ? StringUtil.EMPTY : domain);
            } else {
                credentials = new UsernamePasswordCredentials(username, password == null ? StringUtil.EMPTY : password);
            }
            return credentials;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        public String normalizeConfigPath(final String path) {
    
            if (StringUtil.isBlank(path)) {
                return StringUtils.EMPTY;
            }
    
            final String p = path.trim();
            if (p.startsWith("#")) {
                return StringUtils.EMPTY;
            }
    
            if (p.startsWith(GsaConfigParser.CONTAINS)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'crawler.document.file.ignore.empty.content'. <br>
         * The value is, e.g. false <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerDocumentFileIgnoreEmptyContent();
    
        /**
         * Is the property for the key 'crawler.document.file.ignore.empty.content' true? <br>
         * The value is, e.g. false <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java

                    return false;
                }
    
                @Override
                public String getHttpProxyHost() {
                    return StringUtil.EMPTY;
                }
    
                @Override
                public String getHttpProxyPort() {
                    return StringUtil.EMPTY;
                }
            };
            ComponentUtil.setFessConfig(fessConfig);
            SystemHelper systemHelper = new SystemHelper() {
                @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    crawler.document.html.default.include.search.patterns=
    crawler.document.html.default.exclude.search.patterns=
    
    # file
    crawler.document.file.name.encoding=
    crawler.document.file.no.title.label=No title.
    crawler.document.file.ignore.empty.content=false
    crawler.document.file.max.title.length=100
    crawler.document.file.max.digest.length=200
    crawler.document.file.append.meta.content=true
    crawler.document.file.append.body.content=true
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. pom.xml

    								</source>
    							</sources>
    						</mapping>
    						<!-- logs (empty) -->
    						<mapping>
    							<directory>${packaging.fess.log.dir}</directory>
    						</mapping>
    						<!-- temp (empty) -->
    						<mapping>
    							<directory>${packaging.fess.temp.dir}</directory>
    						</mapping>
    						<!-- dictionary (empty) -->
    						<mapping>
    							<directory>${packaging.fess.dictionary.dir}</directory>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                        if (content != null) {
                            sendDictionaryContent(path, StreamUtil.split(content, "\n")
                                    .get(stream -> stream.map(s -> s.replaceFirst("#.*", StringUtil.EMPTY)).collect(Collectors.joining("\n"))));
                        }
                    }
                }
                try (CurlResponse response = ComponentUtil.getCurlHelper().post("/_configsync/flush").execute()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top