Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for filled (0.05 sec)

  1. SuggestHelper.java

    L118: split(fessConfig.getSuggestFieldIndexContents(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(field -> { L119: try { L120: suggester.settings().array().add(SuggestSettings.DefaultKeys.SUPPORTED_FIELDS, field); L121: } catch (final SuggestSettingsException e) { L122: logger.warn("Failed to add {}", field, e); L123: } L124: })); L125: suggester.createIndexIfNothing();...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.1K bytes
  2. AdminBackupAction.java

    L273: L274: private void importFessJson(final String fileName, final File tempFile) { L275: try (final InputStream in = new FileInputStream(tempFile); final OutputStream out = Files.newOutputStream(getFessJsonPath())) { L276: CopyUtil.copy(in, out); L277: } catch (final IOException e) { L278: logger.warn("Failed to process fess.json file: {}", fileName, e); L279: } finally { L280: deleteTempFile(tempFile); L281: } L282: } L283: L284:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  3. SearchEngineClient.java

    (final Exception e) { L706: logger.warn("Failed to register {}", filePath, e); L707: } L708: }); L709: try (CurlResponse response = ComponentUtil.getCurlHelper().post("/_configsync/flush").execute()) { L710: if (response.getHttpStatusCode() == 200) { L711: logger.info("Flushed config files."); L712: } else { L713: logger.warn("Failed to flush config files."); L714: } L715: } catch (final Exception...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Oct 20 02:08:03 UTC 2024
      86.1K bytes
  4. AdminMaintenanceAction.java

    L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.maintenance; L17: L18:import java.io.IOException; L19:import java.net.InetAddress; L20:import java.nio.file.Files; L21:import java.nio.file.Path; L22:import java.nio.file.Paths; L23:import java.text.SimpleDateFormat; L24:import java.util.Arrays; L25:import java.util.Date; L26:import java.util.Properties; L27:import java.util.stream.Stream; L28:import java.util.zip.ZipEntry; L29:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      14K bytes
  5. FessMultipartRequestHandler.java

    L319: L320: protected void handleFileUploadException(final FileUploadException e) throws ServletException { L321: // suppress logging because it can be caught by logging filter L322: //log.error("Failed to parse multipart request", e); L323: throw new ServletException("Failed to upload the file.", e); L324: } L325: L326: // =================================================================================== L327: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Oct 23 13:27:21 UTC 2024
      18.6K bytes
  6. ProtocolHelper.java

    logger.debug("loading {}", resource); L77: if ("file".equals(resource.getProtocol())) { L78: final File directory = new File(resource.getFile()); L79: if (directory.exists() && directory.isDirectory()) { L80: final File[] files = directory.listFiles(File::isDirectory); L81: if (files != null) { L82: for (final File file : files) { L83: final String name...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Jun 19 01:34:15 UTC 2024
      7.4K bytes
  7. ViewHelper.java

    refox", "file://")); L405: } else { L406: url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.firefox", "file://///")); L407: } L408: break; L409: case CHROME: L410: if (isLocalFile) { L411: url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.chrome", "file://")); L412: } else { L413: url = url.replaceFirst("file:/+", systemProper...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      40.2K bytes
  8. QueryHelperTest.java

    queryParser.init(); L65: return queryParser; L66: } L67: }; L68: File file = File.createTempFile("test", ".properties"); L69: file.deleteOnExit(); L70: FileUtil.writeBytes(file.getAbsolutePath(), "ldap.security.principal=%s@fess.codelibs.local".getBytes("UTF-8")); L71: DynamicProperties systemProps = new DynamicProperties(file); L72: ComponentUtil.register(systemProps, "systemProperties"); L73: ComponentUtil.register(new...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Jul 11 08:26:36 UTC 2024
      39.8K bytes
  9. SearchApiManager.java

    buf.append(']'); L408: if (facetResponse != null && facetResponse.hasFacetResponse()) { L409: // facet field L410: buf.append(','); L411: buf.append("\"facet_field\":["); L412: if (facetResponse.getFieldList() != null) { L413: boolean first1 = true; L414: for (final Field field : facetResponse.getFieldList()) { L415: if (!first1) { L416: buf.append(',');...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  10. ResourceUtil.java

    L188: public static File[] getPluginJarFiles(final String namePrefix) { L189: return getPluginJarFiles((file, name) -> name.startsWith(namePrefix)); L190: } L191: L192: public static File[] getPluginJarFiles(final FilenameFilter filter) { L193: final File libDir = getPluginPath().toFile(); L194: if (!libDir.exists()) { L195: return new File[0]; L196: } L197: return libDir.listFiles(filter); L198: } L199: L200: public static String resolve(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 08:52:32 UTC 2024
      7.5K bytes
Back to top