Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Milesi (0.05 sec)

  1. ApiResult.java

    ApiResult(this); L260: } L261: } L262: L263: public static class ApiLogFilesResponse extends ApiResponse { L264: protected List<Map<String, Object>> files; L265: protected long total = 0; L266: L267: public ApiLogFilesResponse files(final List<Map<String, Object>> files) { L268: this.files = files; L269: return this; L270: } L271: L272: public ApiLogFilesResponse total(final long total) { L273: this.total = total; L274: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.5K bytes
  2. ResourceUtil.java

    final String webinfPath = servletContext.getRealPath("/" + root + base); L151: if (webinfPath != null && Files.exists(Paths.get(webinfPath))) { L152: return Paths.get(webinfPath, names); L153: } L154: } catch (final Throwable e) { L155: // ignore L156: } L157: final String webinfBase = root + base; L158: if (Files.exists(Paths.get(webinfBase))) { L159: return Paths.get(webinfBase, names); L160: } L161: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 08:52:32 UTC 2024
      7.5K bytes
  3. AdminBackupAction.java

    L337: try (final InputStream in = Files.newInputStream(fessJsonPath)) { L338: out.write(in); L339: } L340: }); L341: } else if ("doc.json".equals(id)) { L342: return asStream(id).contentTypeOctetStream().stream(out -> { L343: final Path fessJsonPath = getDocJsonPath(); L344: try (final InputStream in = Files.newInputStream(fessJsonPath)) { L345: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  4. pom.xml

    er> L415: <group>${packaging.fess.group}</group> L416: </mapper> L417: </data> L418: <!-- Add configuration files --> L419: <data> L420: <type>files</type> L421: <paths> L422: <path>${project.basedir}/src/main/assemblies/files/tomcat_config.properties</path> L423: <path>${project.basedir}/src/main/assemblies/files/logging.properties</path> L424: </paths> L425: <dst>${packaging.fess.conf.dir}</dst> L426: <mapper> L427: ...
    github.com/codelibs/fess/pom.xml
    Sat Oct 26 02:16:03 UTC 2024
      49.1K bytes
  5. ApiAdminBackupAction.java

    L50:/** L51: * @author Keiichi Watanabe L52: */ L53:public class ApiAdminBackupAction extends FessApiAdminAction { L54: L55: // GET /api/admin/backup/files L56: @Execute L57: public JsonResponse<ApiResult> files() { L58: final List<Map<String, String>> list = getBackupItems(); L59: return asJson(new ApiBackupFilesResponse().files(list).total(list.size()).status(ApiResult.Status.OK).result()); L60: } L61: L62: // GET /api/admin/backup/file/{id} L63: @Execute L64: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      6.1K bytes
  6. SystemHelper.java

    java.io.File; L22:import java.io.IOException; L23:import java.io.InputStream; L24:import java.io.UnsupportedEncodingException; L25:import java.net.InetAddress; L26:import java.net.URLEncoder; L27:import java.net.UnknownHostException; L28:import java.nio.file.Files; L29:import java.nio.file.Path; L30:import java.time.Instant; L31:import java.time.LocalDateTime; L32:import java.time.ZoneId; L33:import java.util.ArrayList; L34:import java.util.Calendar; L35:import java.util.Collections; L36:import java.util.Date;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  7. ThumbnailManager.java

    L507: try { L508: try { L509: Files.createDirectories(newPath.getParent()); L510: } catch (final FileAlreadyExistsException e) { L511: // ignore L512: } L513: Files.move(path, newPath); L514: logger.info("Move {} to {}", path, newPath); L515: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      21.5K bytes
  8. SearchEngineApiManager.java

    L202: L203: Path filePath = ResourceUtil.getSitePath(path.replaceAll("\\.\\.+", StringUtil.EMPTY).replaceAll("/+", "/").split("/")); L204: if (Files.isDirectory(filePath)) { L205: filePath = filePath.resolve("index.html"); L206: } L207: if (Files.exists(filePath)) { L208: try (InputStream in = Files.newInputStream(filePath); ServletOutputStream out = response.getOutputStream()) { L209: response.setStatus(HttpServletResponse.SC_OK); L210:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Aug 15 08:29:24 UTC 2024
      11.3K bytes
  9. AdminMaintenanceAction.java

    Paths.get(logFilePath); L255: try (Stream<Path> stream = Files.list(logDirPath)) { L256: stream.filter(entry -> isLogFilename(entry.getFileName().toString())).forEach(filePath -> { L257: final ZipEntry entry = new ZipEntry(id + "/" + filePath.getFileName().toString()); L258: try { L259: zos.putNextEntry(entry); L260: final long len = Files.copy(filePath, zos); L261: if (logg...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      14K bytes
  10. PluginHelper.java

    org.codelibs.core.stream.StreamUtil.split; L19: L20:import java.io.ByteArrayInputStream; L21:import java.io.File; L22:import java.io.FileInputStream; L23:import java.io.IOException; L24:import java.io.InputStream; L25:import java.net.Proxy; L26:import java.nio.file.Files; L27:import java.nio.file.Path; L28:import java.nio.file.Paths; L29:import java.util.ArrayList; L30:import java.util.Collections; L31:import java.util.Comparator; L32:import java.util.List; L33:import java.util.Map; L34:import java.util.concurrent.TimeUnit;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 01:47:10 UTC 2024
      17.8K bytes
Back to top