Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for name (0.03 sec)

  1. ResourceUtil.java

    join("/", names)).toPath(); L92: } L93: L94: public static Path getClassesPath(final String... names) { L95: return getPath("WEB-INF/", "classes", names); L96: } L97: L98: public static Path getOrigPath(final String... names) { L99: return getPath("WEB-INF/", "orig", names); L100: } L101: L102: public static Path getMailTemplatePath(final String... names) { L103: return getPath("WEB-INF/", "mail", names); L104: } L105: L106: public static Path getViewTemplatePath(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 08:52:32 UTC 2024
      7.5K bytes
  2. OpenIdConnectCredential.java

    FessUser { L79: L80: private static final long serialVersionUID = 1L; L81: L82: protected final String name; L83: L84: protected String[] groups; L85: L86: protected String[] roles; L87: L88: protected String[] permissions; L89: L90: protected OpenIdUser(final String name, final String[] groups, final String[] roles) { L91: this.name = name; L92: this.groups = groups; L93: this.roles = roles; L94: } L95: L96: @Override...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      4.2K bytes
  3. ExecJob.java

    return this; L134: } L135: L136: protected void addSystemProperty(final List<String> cmdList, final String name, final String defaultValue, final String appendValue) { L137: final String value = System.getProperty(name); L138: if (value != null) { L139: final StringBuilder buf = new StringBuilder(); L140: buf.append("-D").append(name).append("=").append(value); L141: if (appendValue != null) { L142: buf.append(appendValue);...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      7.7K bytes
  4. ApiAdminBackupAction.java

    writer.flush(); L101: } L102: }); L103: } L104: final String name = id.substring(0, id.length() - NDJSON_EXTENTION.length()); L105: if ("search_log".equals(name)) { L106: return writeNdjsonResponse(id, getSearchLogNdjsonWriteCall()); L107: } L108: if ("user_info".equals(name)) { L109: return writeNdjsonResponse(id, getUserInfoNdjsonWriteCall()); L110: } L111: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      6.1K bytes
  5. CrawlingConfig.java

    g input); L44: L45: String getConfigId(); L46: L47: Integer getTimeToLive(); L48: L49: CrawlerClientFactory initializeClientFactory(Supplier<CrawlerClientFactory> creator); L50: L51: Map<String, String> getConfigParameterMap(ConfigName name); L52: L53: default void initializeDefaultHttpProxy(final Map<String, Object> paramMap) { L54: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L55: final String proxyHost = fessConfig.getHttpProxyHost(); L56: final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      5.5K bytes
  6. StoredLtrQueryBuilder.java

    org.opensearch.index.query.QueryBuilder; L32:import org.opensearch.index.query.QueryShardContext; L33: L34:public class StoredLtrQueryBuilder extends AbstractQueryBuilder<StoredLtrQueryBuilder> implements NamedWriteable { L35: public static final String NAME = "sltr"; L36: L37: public static final ParseField MODEL_NAME = new ParseField("model"); L38: public static final ParseField FEATURESET_NAME = new ParseField("featureset"); L39: public static final ParseField STORE_NAME = new ParseField("store");...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      5.8K bytes
  7. OpenIdConnectAuthenticatorTest.java

    String jwtClaim = L34: "{\"email\":\"test@codelibs.org\",\"sub\":\"1234567890\",\"name\":\"John Doe\",\"groups\":[\"group1\",\"group2\"]}"; L35: L36: // Execute L37: authenticator.parseJwtClaim(jwtClaim, attributes); L38: L39: // Verify L40: assertEquals("1234567890", attributes.get("sub")); L41: assertEquals("John Doe", attributes.get("name")); L42: L43: // Check groups array L44: final String[] groups = DocumentUtil.getValue(attributes,...
    github.com/codelibs/fess/src/test/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      2K bytes
  8. PrunedTag.java

    L91: L92: public void setId(final String id) { L93: this.id = id; L94: } L95: L96: public void setCss(final String css) { L97: this.css = css; L98: } L99: L100: public void setAttr(final String name, final String value) { L101: attrName = name; L102: attrValue = value; L103: } L104: L105: @Override L106: public String toString() { L107: return "PrunedTag [tag=" + tag + ", id=" + id + ", css=" + css + ", attrName=" + attrName + ", attrValue="...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      4.8K bytes
Back to top