- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 99 for Pound (0.02 sec)
-
ProtocolHelper.java
{ L82: for (final File file : files) { L83: final String name = file.getName(); L84: subPackages.add(name); L85: logger.debug("found {} in {}", name, resource); L86: } L87: } L88: } L89: } else if ("jar".equals(resource.getProtocol())) { L90: final JarURLConnection jarURLConnection...github.com/codelibs/fess/src/main/java/org/code...Wed Jun 19 01:34:15 UTC 2024 7.4K bytes -
copyright
CONDITIONS OF ANY KIND, either express or implied. L13: See the License for the specific language governing permissions and L14: limitations under the License. L15: . L16: On Debian systems, the complete text of the Apache version 2.0 license L17: can be found in "/usr/share/common-licenses/Apache-2.0"....github.com/codelibs/fess/src/packaging/deb/copy...Thu Jan 07 06:27:26 UTC 2016 749 bytes -
ContentNotFoundException.java
L17: L18:public class ContentNotFoundException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public ContentNotFoundException(final String parentUrl, final String url) { L23: super("Not Found: " + url + " Parent: " + parentUrl, false, false); L24: } L25: L26:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 947 bytes -
GoAction.java
viewHelper = ComponentUtil.getViewHelper(); L142: try { L143: final StreamResponse response = viewHelper.asContentResponse(doc); L144: if (response.getHttpStatus().orElse(200) == 404) { L145: logger.debug("Not found: {}", targetUrl); L146: saveError(messages -> messages.addErrorsNotFoundOnFileSystem(GLOBAL, targetUrl)); L147: return redirect(ErrorAction.class); L148: } L149: return response; L150: } catch...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.9K bytes -
ThumbnailAction.java
fessConfig.getIndexFieldThumbnail(), String.class); L57: if (StringUtil.isBlank(form.queryId) || StringUtil.isBlank(url) || !thumbnailSupport) { L58: // 404 L59: throw responseManager.new404("Thumbnail for " + form.docId + " is not found."); L60: } L61: L62: final File thumbnailFile = thumbnailManager.getThumbnailFile(doc); L63: if (thumbnailFile == null) { L64: if (fessConfig.isThumbnailEnabled()) { L65: thumbnailManager.offer(doc); L66:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 3.6K bytes -
README.md
a.yml` and set correct Elasticsearch URL. L28: L29:Example: L30:``` L31:# The Elasticsearch instance to use for all your queries. L32:elasticsearch.url: "http://localhost:9201" L33:``` L34: L35:#### Q. I imported "fess\_log.ndjson" but no results found. L36: L37:A. Is there any search logs? If it still does not resolve, it may be caused by TimeZone. Please check **Settings** -> **Advanced** -> **dateFormat:tz**....github.com/codelibs/fess/src/main/assemblies/ex...Mon Aug 12 01:26:21 UTC 2019 1.2K bytes -
ScriptEngineFactory.java
L46: final ScriptEngine scriptEngine = scriptEngineMap.get(name.toLowerCase(Locale.ROOT)); L47: if (scriptEngine != null) { L48: return scriptEngine; L49: } L50: throw new ScriptEngineException(name + " is not found."); L51: } L52:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2K bytes -
help.jsp
"*" is a multiple character wildcard search. L43: <pre>Fess*</pre> L44: or L45: <pre>Fe?s</pre> L46: </dd> L47: <dt>Range</dt> L48: <dd> L49: Range Queries allow one to match documents whose field(s) values are L50: between the lower and upper bound specified by the Range Query. Range L51: Queries can be inclusive or exclusive of the upper and lower bounds. L52: If you want to find documents whose content_length fields have values L53: between 1000 and 10000, inclusive, you can enter: L54:...github.com/codelibs/fess/src/main/webapp/WEB-IN...Mon Feb 26 14:01:31 UTC 2018 2.4K bytes -
replaceSchemaMap.dfprop
L119: # e.g. foo or df:dfprop/system-password.txt|foo L120: # (NotRequired - Default '') L121: # o isSkipIfNotFoundPasswordFileAndDefault: Does it skip the user SQL statement L122: # when using password file but not found it and also default password? L123: # (NotRequired - Default false) L124: # L125: #; additionalUserMap = map:{ L126: # ; system = map:{ L127: # #; url = ... L128: # #; schema = ... L129: # ; user =...github.com/codelibs/fess/dbflute_fess/dfprop/re...Sat Oct 31 23:35:14 UTC 2015 9.3K bytes -
HtmlTagBasedGenerator.java
} L71: L72: final File parentFile = outputFile.getParentFile(); L73: if (!parentFile.exists()) { L74: parentFile.mkdirs(); L75: } L76: if (!parentFile.isDirectory()) { L77: logger.warn("Not found: {}", parentFile.getAbsolutePath()); L78: return false; L79: } L80: L81: return process(thumbnailId, responseData -> { L82: if (!isImageMimeType(responseData)) { L83: if (logger.isDebugEnabled()) {...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.5K bytes