Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for support (0.04 sec)

  1. SamlAuthenticator.java

    "Technical Guy"); L110: defaultSettings.put("onelogin.saml2.contacts.technical.email_address", "technical@example.com"); L111: defaultSettings.put("onelogin.saml2.contacts.support.given_name", "Support Guy"); L112: defaultSettings.put("onelogin.saml2.contacts.support.email_address", "support@@example.com"); L113: } L114: L115: protected Saml2Settings getSettings() { L116: final Map<String, Object> params = new HashMap<>(defaultSettings); L117: final DynamicProperties...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.2K bytes
  2. UpgradeUtil.java

    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 org.opensearch.cluster.metadata.MappingMetadata; L38:import org.opensearch.common.xcontent.XContentType; L39:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.1K bytes
  3. GsaConfigParserTest.java

    logger.debug(c.toString()); L49: }).orElse(() -> fail()); L50: LabelType[] labelTypes = parser.getLabelTypes(); L51: assertEquals(3, labelTypes.length); L52: } L53: L54: public void test_escape() { L55: // https://www.google.com/support/enterprise/static/gsa/docs/admin/70/gsa_doc_set/admin_crawl/url_patterns.html#1076127 L56: assertEscapePattern("", "# Test"); L57: assertEscapePattern(".*\\Q!/\\E.*", "!/"); L58: assertEscapePattern("\\Qindex.html\\E", "index.html");...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.2K bytes
  4. SystemHelper.java

    final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC")); L138: cal.set(2026, 3 - 1, 1); // EOL Date L139: eolTime = cal.getTimeInMillis(); L140: if (isEoled()) { L141: logger.error("Your system is out of support. See https://fess.codelibs.org/eol.html"); L142: } L143: updateSystemProperties(); L144: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L145: filterPathEncoding = fessConfig.getPathEncoding(); L146: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  5. SearchEngineClient.java

    L135:import org.opensearch.action.search.SearchResponse; L136:import org.opensearch.action.search.SearchScrollRequest; L137:import org.opensearch.action.search.SearchScrollRequestBuilder; L138:import org.opensearch.action.support.WriteRequest.RefreshPolicy; L139:import org.opensearch.action.support.master.AcknowledgedResponse; L140:import org.opensearch.action.termvectors.MultiTermVectorsRequest; L141:import org.opensearch.action.termvectors.MultiTermVectorsRequestBuilder; L142:import org.opensearch.action...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Oct 20 02:08:03 UTC 2024
      86.1K bytes
  6. FessLabels.java

    mode. For production use, please install a standalone OpenSearch server. */ L2887: public static final String LABELS_development_mode_warning = "{labels.development_mode_warning}"; L2888: L2889: /** The key of the message: Your system is out of support. See EOL page. */ L2890: public static final String LABELS_eol_error = "{labels.eol_error}"; L2891: L2892: /** The key of the message: Search View */ L2893: public static final String LABELS_tooltip_search_view = "{labels.tooltip_search_view}";...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Mar 22 11:58:34 UTC 2024
      146.4K bytes
  7. FileConfig.java

    rs()); L173: final String domain = map.get("domain"); L174: smbAuth.setDomain(domain == null ? StringUtil.EMPTY : domain); L175: smbAuth.setServer(fileAuth.getHostname()); L176: smbAuth.setPort(fileAuth.getPort() == null ? -1 : fileAuth.getPort()); L177: smbAuth.setUsername(fileAuth.getUsername()); L178: smbAuth.setPassword(fileAuth.getPassword()); L179: smbAuthList.add(smbAuth); L180: L181: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.8K bytes
  8. BoostDocumentRuleService.java

    r)); L75: } L76: if (StringUtil.isNotBlank(boostDocumentRulePager.boostExpr)) { L77: cb.query().setBoostExpr_Wildcard(wrapQuery(boostDocumentRulePager.boostExpr)); L78: } L79: // TODO Long, Integer, String supported only. L80: L81: // setup condition L82: cb.query().addOrderBy_SortOrder_Asc(); L83: cb.query().addOrderBy_CreatedTime_Asc(); L84: L85: // search L86: L87: } L88: L89:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.3K bytes
  9. RequestHeaderService.java

    nal RequestHeaderCB cb, final ReqHeaderPager requestHeaderPager) { L77: if (requestHeaderPager.id != null) { L78: cb.query().docMeta().setId_Equal(requestHeaderPager.id); L79: } L80: // TODO Long, Integer, String supported only. L81: L82: // setup condition L83: cb.query().addOrderBy_Name_Asc(); L84: L85: // search L86: L87: } L88: L89: public List<RequestHeader> getRequestHeaderList(final String webConfigId) { L90: return request...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.2K bytes
  10. WebAuthenticationService.java

    WebAuthenticationCB cb, final WebAuthPager webAuthenticationPager) { L78: if (webAuthenticationPager.id != null) { L79: cb.query().docMeta().setId_Equal(webAuthenticationPager.id); L80: } L81: // TODO Long, Integer, String supported only. L82: // setup condition L83: cb.query().addOrderBy_Hostname_Asc(); L84: cb.query().addOrderBy_WebConfigId_Asc(); L85: L86: // search L87: L88: } L89: L90: public List<WebAuthentication> getWebAuthenticationList(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.5K bytes
Back to top