Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for bound (0.03 sec)

  1. 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
  2. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. 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
  8. 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
  9. SearchLogHelper.java

    } else { L372: countObj = countObj.intValue() + 1; L373: } L374: clickCountMap.put(docId, countObj); L375: }).orElse(() -> { L376: logger.warn("Not Found for SearchLog: {}", clickLog); L377: }); L378: } catch (final Exception e) { L379: logger.warn("Failed to process: {}", clickLog, e); L380: } L381: } L382: processClickLog(clickLogList);...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jul 22 02:07:37 UTC 2024
      21.7K bytes
  10. 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
Back to top