Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 209 for PUT (0.03 sec)

  1. SearchAction.java

    buildInitParams(); L86: RenderDataUtil.register(data, "notification", fessConfig.getNotificationSearchTop()); L87: })); L88: if (!form.hasConditionQuery()) { L89: if (StringUtil.isNotBlank(form.q)) { L90: form.as.put("q", new String[] { form.q }); L91: } else { L92: // TODO set default? L93: } L94: } L95: return asHtml(virtualHost(path_AdvanceJsp)).renderWith(data -> { L96: buildInitParams(); L97: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12.3K bytes
  2. RoleQueryHelper.java

    g(); L287: } L288: L289: public void addCookieNameMapping(final String cookieName, final String roleName) { L290: if (cookieNameMap == null) { L291: cookieNameMap = new HashMap<>(); L292: } L293: cookieNameMap.put(cookieName, roleName); L294: } L295: L296: public void setCipher(final CachedCipher cipher) { L297: this.cipher = cipher; L298: } L299: L300: public void setValueSeparator(final String valueSeparator) { L301: this.valueSeparator...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jul 25 01:48:41 UTC 2024
      11.5K bytes
  3. JobHelper.java

    CronParamsSupplier paramsOp = () -> { L75: final Map<String, Object> params = new HashMap<>(); L76: ComponentUtil.getComponent(ScheduledJobBhv.class).selectByPK(scheduledJob.getId()) L77: .ifPresent(e -> params.put(Constants.SCHEDULED_JOB, e)).orElse(() -> { L78: logger.warn("Job {} is not found.", scheduledJob.getId()); L79: }); L80: return params; L81: }; L82: findJobByUniqueOf(LaJobUnique.o...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      8.1K bytes
  4. ComponentUtil.java

    systemHelper = null; L614: FessProp.propMap.clear(); L615: componentMap.clear(); L616: } L617: } L618: L619: public static void register(final Object instance, final String name) { L620: componentMap.put(name, instance); L621: } L622:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jun 17 13:35:51 UTC 2024
      20.2K bytes
  5. UserInfoHelper.java

    docIdList.add(docId.toString()); L181: } L182: } L183: L184: if (!docIdList.isEmpty()) { L185: final Map<String, String[]> resultDocIdsCache = getResultDocIdsCache(session); L186: resultDocIdsCache.put(queryId, docIdList.toArray(new String[docIdList.size()])); L187: } L188: }); L189: } L190: L191: public String[] getResultDocIds(final String queryId) { L192: return LaRequestUtil.getOptionalRequest().map(req -> req.g...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.5K bytes
  6. Crawler.java

    Map.Entry<String, String> entry : infoMap.entrySet()) { L400: dataMap.put(StringUtil.decapitalize(entry.getKey()), entry.getValue()); L401: } L402: L403: String hostname = fessConfig.getMailHostname(); L404: if (StringUtil.isBlank(hostname)) { L405: hostname = ComponentUtil.getSystemHelper().getHostname(); L406: } L407: dataMap.put("hostname", hostname); L408: L409: logger.debug("\ninfoMap: {}\ndataMap:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24K bytes
  7. UpgradeUtil.java

    ponse; L30:import org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse.FieldMappingMetadata; L31:import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse; L32:import org.opensearch.action.admin.indices.mapping.put.PutMappingRequestBuilder; L33:import org.opensearch.action.index.IndexRequest; L34:import org.opensearch.action.support.master.AcknowledgedResponse; L35:import org.opensearch.client.Client; L36:import org.opensearch.client.IndicesAdminClient; L37:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.1K bytes
  8. AzureAdAuthenticator.java

    final StateData stateData = new StateData(nonce, ComponentUtil.getSystemHelper().getCurrentTimeAsLong()); L172: if (logger.isDebugEnabled()) { L173: logger.debug("store {} in session", stateData); L174: } L175: stateMap.put(state, stateData); L176: } L177: L178: protected LoginCredential processAuthenticationData(final HttpServletRequest request) { L179: final StringBuffer urlBuf = request.getRequestURL(); L180: final String queryStr = request.getQueryString();...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.2K bytes
  9. BsFileConfig.java

    addFieldToSource(sourceMap, "virtualHosts", virtualHosts); L192: } L193: return sourceMap; L194: } L195: L196: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L197: sourceMap.put(field, value); L198: } L199: L200: // =================================================================================== L201: // Basic Override L202: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      13.7K bytes
  10. CrawlingConfigHelper.java

    crawlingConfigCache.invalidateAll(); L145: } L146: L147: public synchronized String store(final String sessionId, final CrawlingConfig crawlingConfig) { L148: final String sessionCountId = sessionId + "-" + count; L149: crawlingConfigMap.put(sessionCountId, crawlingConfig); L150: count++; L151: return sessionCountId; L152: } L153: L154: public void remove(final String sessionCountId) { L155: crawlingConfigMap.remove(sessionCountId); L156: } L157: L158: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      11.7K bytes
Back to top