Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 208 for read (0.02 sec)

  1. HtmlTagBasedGeneratorTest.java

    generator.saveImage(input, outputFile); L88: } L89: assertImageSize(outputFile, 100, 100); L90: L91: } L92: L93: private void assertImageSize(File file, int width, int height) throws IOException { L94: BufferedImage img = ImageIO.read(file); L95: logger.debug("width: {}, height: {}", img.getWidth(), img.getHeight()); L96: assertEquals("Image Width", width, img.getWidth()); L97: assertEquals("Image Height", height, img.getHeight()); L98: } L99:}...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.1K bytes
  2. CrawlingInfoService.java

    crawlingInfoParamBhv.insert(entity, op -> op.setRefreshPolicy(Constants.TRUE)); L238: } catch (final Exception e) { L239: logger.warn("Failed to read a click log: {}", list, e); L240: } L241: } L242: } catch (final IOException e) { L243: logger.warn("Failed to read a click log.", e); L244: } L245: } L246: L247: public void exportCsv(final Writer writer) { L248: final CsvConfig cfg = new CsvConfig(',', '"', '"');...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.4K bytes
  3. fess_message_ru.properties

    L124:errors.failed_to_change_password=Failed to change your password. L125:errors.unknown_version_for_upgrade=Unknown version information. L126:errors.failed_to_upgrade_from=Failed to upgrade from {0}. L127:errors.failed_to_read_request_file=Failed to read request file: {0} L128:errors.invalid_header_for_request_file=Invalid header: {0} L129: L130:errors.invalid_query_unknown=The given query has unknown condition. L131:errors.invalid_query_parse_error=The given query is invalid. L132:errors.invalid_...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri May 20 12:12:28 UTC 2022
      10.2K bytes
  4. popper.min.js.map

    `onLoad` props.\n * All the other properties are configurations that could be tweaked.\n * @namespace modifiers\n */\nexport default {\n /**\n * Modifier used to shift the popper on the start or end of its reference\n * element.<br />\n * It will read the variation of the `placement` property.<br />\n * It can be one either `-end` or `-start`.\n * @memberof modifiers\n * @inner\n */\n shift: {\n /** @prop {number} order=100 - Index used to define the order of execution */\n order:...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      120.9K bytes
  5. FessMultipartRequestHandler.java

    MultipartExceededException(msg, actual, permitted, e)); L307: try { L308: final InputStream is = request.getInputStream(); L309: try { L310: final byte[] buf = new byte[1024]; L311: while ((is.read(buf)) != -1) {} L312: } catch (final Exception ignored) {} finally { L313: try { L314: is.close(); L315: } catch (final Exception ignored) {} L316: } L317: } catch (final...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Oct 23 13:27:21 UTC 2024
      18.6K bytes
  6. fess_message.properties

    L133:errors.unknown_version_for_upgrade=Unknown version information. L134:errors.failed_to_upgrade_from=Failed to upgrade from {0}: {1} L135:errors.failed_to_reindex=Failed to start reindexing from {0} to {1} L136:errors.failed_to_read_request_file=Failed to read request file: {0} L137:errors.invalid_header_for_request_file=Invalid header: {0} L138:errors.could_not_delete_logged_in_user=Could not delete logged in user. L139:errors.unauthorized_request=Unauthorized request. L140:errors.failed_to_print_thread_dump=Failed...
    github.com/codelibs/fess/src/main/resources/fes...
    Sat Mar 18 03:05:44 UTC 2023
      12.5K bytes
  7. fess_message_en.properties

    L129:errors.unknown_version_for_upgrade=Unknown version information. L130:errors.failed_to_upgrade_from=Failed to upgrade from {0}: {1} L131:errors.failed_to_reindex=Failed to start reindexing from {0} to {1} L132:errors.failed_to_read_request_file=Failed to read request file: {0} L133:errors.invalid_header_for_request_file=Invalid header: {0} L134:errors.could_not_delete_logged_in_user=Could not delete logged in user. L135:errors.unauthorized_request=Unauthorized request. L136:errors.failed_to_print_thread_dump=Failed...
    github.com/codelibs/fess/src/main/resources/fes...
    Sat Mar 18 03:05:44 UTC 2023
      12.4K bytes
  8. FessXpathTransformer.java

    try (final BufferedInputStream bis = new BufferedInputStream(responseData.getResponseBody())) { L141: final byte[] bomBytes = new byte[UTF8_BOM_SIZE]; L142: bis.mark(UTF8_BOM_SIZE); L143: final int size = bis.read(bomBytes); L144: if (size < 3 || !isUtf8BomBytes(bomBytes)) { L145: bis.reset(); L146: } L147: final InputSource is = new InputSource(bis); L148: if (responseData.getCharSet() != null) { L149:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      42.9K bytes
  9. AzureAdAuthenticator.java

    final String nonce = UuidUtil.create(); L152: storeStateInSession(request.getSession(), state, nonce); L153: final String authUrl = getAuthority() + getTenant() L154: + "/oauth2/authorize?response_type=code&scope=directory.read.all&response_mode=form_post&redirect_uri=" L155: + URLEncoder.encode(getReplyUrl(request), Constants.UTF_8_CHARSET) + "&client_id=" + getClientId() L156: + "&resource=https%3a%2f%2fgraph.microsoft.com" + "&state=" + state...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.2K bytes
  10. FessMessages.java

    rade_from}"; L334: L335: /** The key of the message: Failed to start reindexing from {0} to {1} */ L336: public static final String ERRORS_failed_to_reindex = "{errors.failed_to_reindex}"; L337: L338: /** The key of the message: Failed to read request file: {0} */ L339: public static final String ERRORS_failed_to_read_request_file = "{errors.failed_to_read_request_file}"; L340: L341: /** The key of the message: Invalid header: {0} */ L342: public static final String ERRORS_inva...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      119.9K bytes
Back to top