Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Road (0.05 sec)

  1. SystemHelper.java

    -> Integer.toString(ComponentUtil.getLabelTypeHelper().load())); L177: updateConfigListenerMap.put("PathMapping", () -> Integer.toString(ComponentUtil.getPathMappingHelper().load())); L178: updateConfigListenerMap.put("RelatedContent", () -> Integer.toString(ComponentUtil.getRelatedContentHelper().load())); L179: updateConfigListenerMap.put("RelatedQuery", () -> Integer.toString(ComponentUtil.getRelatedQueryHelper().load())); L180: updateConfigListenerMap.put("KeyMatch",...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  2. RankFusionProcessor.java

    <= {})", maxPageSize, windowSize); L83: this.windowSize = 2 * maxPageSize; L84: } else { L85: this.windowSize = windowSize; L86: } L87: load(); L88: } L89: L90: public void update() { L91: CommonPoolUtil.execute(this::load); L92: } L93: L94: protected void load() { L95: final String value = System.getProperty("rank.fusion.searchers"); L96: if (StringUtil.isBlank(value)) { L97: availableSearcherNameSet = Collections.emptySet();...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.3K bytes
  3. LabelTypeHelper.java

    labelTypePatternList; L48: L49: @PostConstruct L50: public void init() { L51: if (logger.isDebugEnabled()) { L52: logger.debug("Initialize {}", this.getClass().getSimpleName()); L53: } L54: load(); L55: } L56: L57: @Override L58: public int load() { L59: final List<LabelType> labelTypeList = ComponentUtil.getComponent(LabelTypeService.class).getLabelTypeList(); L60: buildLabelTypeItems(labelTypeList); L61: buildLabelTypePatternList(labelTypeList);...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      11.7K bytes
  4. AdminBackupAction.java

    .toList())); L262: } L263: L264: private void importSystemProperties(final String fileName, final File tempFile) { L265: try (final InputStream in = new FileInputStream(tempFile)) { L266: ComponentUtil.getSystemProperties().load(in); L267: } catch (final IOException e) { L268: logger.warn("Failed to process system.properties file: {}", fileName, e); L269: } finally { L270: deleteTempFile(tempFile); L271: } L272: } L273: L274: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  5. SearchEngineApiManager.java

    acceptedRoles = { "admin" }; L58: L59: public SearchEngineApiManager() { L60: setPathPrefix(ADMIN_SERVER); L61: } L62: L63: @PostConstruct L64: public void register() { L65: if (logger.isInfoEnabled()) { L66: logger.info("Load {}", this.getClass().getSimpleName()); L67: } L68: ComponentUtil.getWebApiManagerFactory().add(this); L69: } L70: L71: @Override L72: public boolean matches(final HttpServletRequest request) { L73: final String servletPath...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Aug 15 08:29:24 UTC 2024
      11.3K bytes
  6. SearchApiManager.java

    "application/json"; L101: L102: public SearchApiManager() { L103: setPathPrefix("/api/v1"); L104: } L105: L106: @PostConstruct L107: public void register() { L108: if (logger.isInfoEnabled()) { L109: logger.info("Load {}", this.getClass().getSimpleName()); L110: } L111: ComponentUtil.getWebApiManagerFactory().add(this); L112: } L113: L114: @Override L115: protected FormatType detectFormatType(final HttpServletRequest request) { L116: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  7. FessConfig.java

    getMaxLogOutputLengthAsInteger(); L2270: L2271: /** L2272: * Get the value for the key 'adaptive.load.control'. <br> L2273: * The value is, e.g. 50 <br> L2274: * @return The value of found property. (NotNull: if not found, exception but basically no way) L2275: */ L2276: String getAdaptiveLoadControl(); L2277: L2278: /** L2279: * Get the value for the key 'adaptive.load.control' as {@link Integer}. <br> L2280: * The value is, e.g. 50 <br> L2281: * @return The value...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  8. ViewHelper.java

    logger.debug("loaded facet data: {}", data); L816: } L817: return data.getFacetResponse(); L818: }); L819: } catch (final ExecutionException e) { L820: throw new FessSystemException("Cannot load facet from cache.", e); L821: } L822: } L823: L824: public String createHighlightText(final HighlightField highlightField) { L825: final Text[] fragments = highlightField.fragments(); L826: if (fragments != null && fragments.length...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      40.2K bytes
  9. Constants.java

    public static final String FESS_CONFIG_PREFIX = "fess.config."; L453: L454: public static final String XERCES_FEATURE_PREFIX = "http://apache.org/xml/features/"; L455: L456: public static final String LOAD_EXTERNAL_DTD_FEATURE = "nonvalidating/load-external-dtd"; L457: L458: public static final String FESEN_TYPE_CLOUD = "cloud"; L459: L460: public static final String FESEN_TYPE_AWS = "aws"; L461: L462: public static final String FESEN_USERNAME = "fesen.username"; L463: L464: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Aug 22 12:43:18 UTC 2024
      16.6K bytes
  10. PluginHelper.java

    Artifact[]> availableArtifacts = CacheBuilder.newBuilder().maximumSize(10) L71: .expireAfterWrite(5, TimeUnit.MINUTES).build(new CacheLoader<ArtifactType, Artifact[]>() { L72: @Override L73: public Artifact[] load(final ArtifactType key) { L74: final List<Artifact> list = new ArrayList<>(); L75: for (final String url : getRepositories()) { L76: if (url.endsWith(".yaml")) { L77: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 01:47:10 UTC 2024
      17.8K bytes
Back to top