- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for Pound (0.04 sec)
-
FessEnv.java
the property. (NotNull) L56: * @return The value of found property. (NotNull: if not found, exception) L57: * @throws ConfigPropertyNotFoundException When the property is not found. L58: */ L59: String get(String propertyKey); L60: L61: /** L62: * Is the property true? L63: * @param propertyKey The key of the property which is boolean type. (NotNull) L64: * @return The determination, true or false. (if not found, exception) L65: * @throws ConfigPropertyNotFoundException...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes -
FessConfig.java
default <br> L1875: * comment: Search Engine L1876: * @return The value of found property. (NotNull: if not found, exception but basically no way) L1877: */ L1878: String getSearchEngineType(); L1879: L1880: /** L1881: * Get the value for the key 'search_engine.http.url'. <br> L1882: * The value is, e.g. http://localhost:9201 <br> L1883: * @return The value of found property. (NotNull: if not found, exception but basically no way) L1884: */ L1885: String getSearchEngineHttpUrl();...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
OsddHelper.java
L61: return null; L62: } L63: if (StringUtil.isBlank(osddPath)) { L64: logger.info("OSDD file is not found."); L65: return null; L66: } L67: final String path = LaServletContextUtil.getServletContext().getRealPath(osddPath); L68: if (path == null) { L69: logger.warn("{} was not found.", path); L70: return null; L71: } L72: final File osddFile = new File(path); L73: if (!osddFile.isFile())...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 3.7K bytes -
SearchApiManager.java
null."); L631: } L632: L633: boolean found = false; L634: for (final String id : docIds) { L635: if (docId.equals(id)) { L636: found = true; L637: break; L638: } L639: } L640: if (!found) { L641: throw new WebApiException(HttpServletResponse.SC_NOT_FOUND,...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 50.3K bytes -
ViewHelperTest.java
"file://home/taro/あ.txt"); L170: assertUrlLink("ftp:/home/taro/%E3%81%82.txt", // L171: "file://home/taro/%E3%81%82.txt"); L172: L173: assertUrlLink(null, "#not-found-docId"); L174: assertUrlLink("", "#not-found-docId"); L175: assertUrlLink(" ", "#not-found-docId"); L176: } L177: L178: private void assertUrlLink(String url, String expected) { L179: Map<String, Object> doc = new HashMap<>(); L180: doc.put("doc_id", "docId"); L181:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 15.1K 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 -
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 -
DataIndexHelper.java
DataStoreFactory dataStoreFactory = ComponentUtil.getDataStoreFactory(); L212: dataStore = dataStoreFactory.getDataStore(dataConfig.getHandlerName()); L213: if (dataStore == null) { L214: logger.error("DataStore({}) is not found.", dataConfig.getHandlerName()); L215: } else { L216: try { L217: dataStore.store(dataConfig, indexUpdateCallback, initParamMap); L218: } catch (final Throwable e) { L219: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12K 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 -
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