- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for bound (0.05 sec)
-
popper.min.js.map
nce.modifiers, 'hide', 'preventOverflow')) {\n return data;\n }\n\n const refRect = data.offsets.reference;\n const bound = find(\n data.instance.modifiers,\n modifier => modifier.name === 'preventOverflow'\n ).boundaries;\n\n if (\n refRect.bottom < bound.top ||\n refRect.left > bound.right ||\n refRect.top > bound.bottom ||\n refRect.right < bound.left\n ) {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === true) {\n return...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 120.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 -
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 -
daterangepicker.js
this.timePickerIncrement) L464: this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); L465: L466: if (this.minDate && this.startDate.isBefore(this.minDate)) { L467: this.startDate = this.minDate.clone(); L468: if (this.timePicker && this.timePickerIncrement) L469: this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 64.8K bytes -
ProcessHelper.java
sendCommand(final String sessionId, final String command) { L154: final JobProcess jobProcess = runningProcessMap.get(sessionId); L155: if (jobProcess == null) { L156: throw new JobNotFoundException("Job for " + sessionId + " is not found."); L157: } L158: try { L159: final OutputStream out = jobProcess.getProcess().getOutputStream(); L160: IOUtils.write(command + "\n", out, Constants.CHARSET_UTF_8); L161: out.flush(); L162: } catch...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 6.4K bytes -
ThumbnailManager.java
} L107: } L108: if (baseDir.mkdirs()) { L109: logger.info("Created: {}", baseDir.getAbsolutePath()); L110: } L111: if (!baseDir.isDirectory()) { L112: throw new FessSystemException("Not found: " + baseDir.getAbsolutePath()); L113: } L114: L115: if (logger.isDebugEnabled()) { L116: logger.debug("Thumbnail Directory: {}", baseDir.getAbsolutePath()); L117: } L118: L119: thumbnailTaskQueue = new Linke...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 21.5K bytes -
CommandGenerator.java
} L94: L95: final File parentFile = outputFile.getParentFile(); L96: if (!parentFile.exists()) { L97: parentFile.mkdirs(); L98: } L99: if (!parentFile.isDirectory()) { L100: logger.warn("Not found: {}", parentFile.getAbsolutePath()); L101: return false; L102: } L103: L104: return process(thumbnailId, responseData -> { L105: final File tempFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_",...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 9.6K bytes -
SearchEngineApiManager.java
WebApiException(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e); L217: } L218: } else { L219: try { L220: writeHeaders(response); L221: response.sendError(HttpServletResponse.SC_NOT_FOUND, path + " is not found."); L222: } catch (final ClientAbortException e) { L223: logger.debug("Client aborts this request.", e); L224: } catch (final IOException e) { L225: logger.error("Failed to read {} from {}", path,...github.com/codelibs/fess/src/main/java/org/code...Thu Aug 15 08:29:24 UTC 2024 11.3K bytes -
PluginHelper.java
pluginUrl + version + "/" + name + "-" + actualVersion + ".jar")); L148: } else if (logger.isDebugEnabled()) { L149: logger.debug("Snapshot name is not found: {}/{}", name, version); L150: } L151: } else { L152: list.add(new Artifact(name, version, pluginUrl + version + "/" + name + "-" + version + ".jar")); L153: ...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 01:47:10 UTC 2024 17.8K bytes -
SearchEngineClient.java
true; L506: } L507: if (logger.isDebugEnabled()) { L508: logger.debug("Failed to create {} index.", indexName); L509: } L510: } catch (final Exception e) { L511: logger.warn("{} is not found.", indexConfigFile, e); L512: } L513: L514: return false; L515: } L516: L517: public boolean deleteIndex(final String indexName) { L518: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L519: try { L520:...github.com/codelibs/fess/src/main/java/org/code...Sun Oct 20 02:08:03 UTC 2024 86.1K bytes