Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 241 for role (0.02 sec)

  1. User.java

    L117: if (password != null) { L118: sourceMap.put("password", password); L119: } L120: if (groups != null) { L121: sourceMap.put("groups", groups); L122: } L123: if (roles != null) { L124: sourceMap.put("roles", roles); L125: } L126: if (attributes != null) { L127: sourceMap.putAll(attributes); L128: } L129: return sourceMap; L130: } L131:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.8K bytes
  2. AzureAdCredential.java

    { L131: return authResult; L132: } L133: L134: public void setGroups(final String[] groups) { L135: this.groups = groups; L136: } L137: L138: public void setRoles(final String[] roles) { L139: this.roles = roles; L140: } L141: } L142:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.1K bytes
  3. fess_label_de.properties

    ls=Label L461:labels.labeltype_name=Name L462:labels.labeltype_value=Wert L463:labels.labeltype_included_paths=Eingeschlossene Pfade L464:labels.labeltype_excluded_paths=Ausgeschlossene Pfade L465:labels.roletype_configuration=Rolle L466:labels.roletype_title_details=Rolle L467:labels.roletype_name=Name L468:labels.roletype_value=Wert L469:labels.reqheader_configuration=Anfrage-Kopfzeile L470:labels.reqheader_list_name=Name L471:labels.reqheader_list_web_crawling_config=Konfigurationsname L472:l...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri Mar 22 11:58:34 UTC 2024
      42.8K bytes
  4. DocBoostMatcher.java

    L29: L30: private final String scriptType; L31: L32: public DocBoostMatcher() { L33: scriptType = Constants.DEFAULT_SCRIPT; L34: } L35: L36: public DocBoostMatcher(final BoostDocumentRule rule) { L37: matchExpression = rule.getUrlExpr(); L38: boostExpression = rule.getBoostExpr(); L39: scriptType = ComponentUtil.getFessConfig().getCrawlerDefaultScript(); L40: } L41: L42: public boolean match(final Map<String, Object> map) { L43: L44: if (map == null...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      2.8K bytes
  5. UserBhv.java

    entUtil; L26:import org.dbflute.exception.IllegalBehaviorStateException; L27:import org.dbflute.util.DfTypeUtil; L28: L29:/** L30: * @author FreeGen L31: */ L32:public class UserBhv extends BsUserBhv { L33: L34: private static final String ROLES = "roles"; L35: private static final String GROUPS = "groups"; L36: private static final String PASSWORD = "password"; L37: private static final String NAME = "name"; L38: L39: private String indexName = null; L40: L41: @Override L42: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.7K bytes
  6. BsUser.java

    erty("registeredAddress"); L661: this.registeredAddress = value; L662: } L663: L664: public String[] getRoles() { L665: checkSpecifiedProperty("roles"); L666: return roles; L667: } L668: L669: public void setRoles(String[] value) { L670: registerModifiedProperty("roles"); L671: this.roles = value; L672: } L673: L674: public String getRoomNumber() { L675: checkSpecifiedProperty("roomNumber"); L676: return convertEmptyToNull(roomNumber);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      22.8K bytes
  7. fess_log_search_log.json

    "keyword" L36: }, L37: "requestedAt" : { L38: "type" : "date", L39: "format" : "date_optional_time" L40: }, L41: "responseTime" : { L42: "type" : "long" L43: }, L44: "roles" : { L45: "type" : "keyword" L46: }, L47: "searchWord" : { L48: "type" : "keyword" L49: }, L50: "user" : { L51: "type" : "keyword" L52: }, L53: "userAgent" : { L54:...
    github.com/codelibs/fess/src/main/config/es/fes...
    Fri Apr 12 15:00:27 UTC 2019
      2K bytes
  8. IntervalControlHelper.java

    int h = cal.get(Calendar.HOUR_OF_DAY); L53: final int m = cal.get(Calendar.MINUTE); L54: final int d = cal.get(Calendar.DAY_OF_WEEK); // SUN(1) - SAT(7) L55: for (final IntervalRule rule : ruleList) { L56: if (rule.isTarget(h, m, d)) { L57: return rule.getDelay(); L58: } L59: } L60: return 0; L61: } L62: L63: protected Calendar getCurrentCal() { L64: final Calendar cal = Calendar.getInstance(); L65: cal.se...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      5.8K bytes
  9. bootstrap.min.css

    ottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[ty...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      158.5K bytes
  10. BsSearchLogCQ.java

    L2613: L2614: public void setRoles_Equal(String roles) { L2615: setRoles_Term(roles, null); L2616: } L2617: L2618: public void setRoles_Equal(String roles, ConditionOptionCall<TermQueryBuilder> opLambda) { L2619: setRoles_Term(roles, opLambda); L2620: } L2621: L2622: public void setRoles_Term(String roles) { L2623: setRoles_Term(roles, null); L2624: } L2625: L2626: public void setRoles_Term(String roles, ConditionOptionCall<TermQueryBuilder> opLambda) { L2627:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      145.4K bytes
Back to top