Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ZipOutputStream (0.06 sec)

  1. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

                assertTrue(true);
            }
        }
    
        // Helper methods to create mock zip files
        private void createMockThemeZip(Path zipPath) throws IOException {
            try (ZipOutputStream zos = new ZipOutputStream(Files.newOutputStream(zipPath))) {
                // Add view file
                ZipEntry viewEntry = new ZipEntry("view/index.ftl");
                zos.putNextEntry(viewEntry);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            return asStream(diagnosticId + ".zip").contentTypeOctetStream().stream(out -> {
                try (ZipOutputStream zos = new ZipOutputStream(out.stream())) {
                    writeLogFiles(zos, diagnosticId);
                    writeSystemProperties(zos, diagnosticId);
                    writeFessBasicConfig(zos, diagnosticId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top