Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 530 for created (0.07 sec)

  1. related_content.json

    "type": "keyword" L5: }, L6: "content": { L7: "type": "keyword" L8: }, L9: "virtualHost": { L10: "type": "keyword" L11: }, L12: "sortOrder": { L13: "type": "integer" L14: }, L15: "createdBy": { L16: "type": "keyword" L17: }, L18: "createdTime": { L19: "type": "long" L20: }, L21: "updatedBy": { L22: "type": "keyword" L23: }, L24: "updatedTime": { L25: "type": "long" L26: ...
    github.com/codelibs/fess/src/main/resources/fes...
    Thu Dec 02 13:14:56 UTC 2021
      470 bytes
  2. web_config.json

    "type": "boolean" L47: }, L48: "permissions": { L49: "type": "keyword" L50: }, L51: "virtualHosts": { L52: "type": "keyword" L53: }, L54: "sortOrder": { L55: "type": "integer" L56: }, L57: "createdBy": { L58: "type": "keyword" L59: }, L60: "createdTime": { L61: "type": "long" L62: }, L63: "updatedBy": { L64: "type": "keyword" L65: }, L66: "updatedTime": { L67: "type": "long" L68: ...
    github.com/codelibs/fess/src/main/resources/fes...
    Thu Dec 02 13:14:56 UTC 2021
      1.3K bytes
  3. TestmailPostcard.java

    L99: // Application Variable L100: // -------------------- L101: /** L102: * Set the value of hostname, used in parameter comment. <br> L103: * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty. L104: * @param hostname The parameter value of hostname. (NotNull) L105: */ L106: public void setHostname(String hostname) { L107: registerVariable("hostname", hostname); L108:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.9K bytes
  4. BadWordPager.java

    boolean existNextPage; L38: L39: private List<Integer> pageNumberList; L40: L41: private int pageSize; L42: L43: private int currentPageNumber; L44: L45: public String id; L46: L47: public String suggestWord; L48: L49: public String createdBy; L50: L51: public String createdTime; L52: L53: public String versionNo; L54: L55: public void clear() { L56: allRecordCount = 0; L57: allPageCount = 0; L58: existPrePage = false; L59: existNextPage = false; L60:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.4K bytes
  5. ElevateWordPager.java

    private List<Integer> pageNumberList; L40: L41: private int pageSize; L42: L43: private int currentPageNumber; L44: L45: public String id; L46: L47: public String suggestWord; L48: L49: public String boost; L50: L51: public String createdBy; L52: L53: public String createdTime; L54: L55: public String versionNo; L56: L57: public void clear() { L58: allRecordCount = 0; L59: allPageCount = 0; L60: existPrePage = false; L61: existNextPage = false; L62:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.5K bytes
  6. LabelTypePager.java

    pageNumberList; L40: L41: private int pageSize; L42: L43: private int currentPageNumber; L44: L45: public String id; L46: L47: public String name; L48: L49: public String value; L50: L51: public String sortOrder; L52: L53: public String createdBy; L54: L55: public String createdTime; L56: L57: public String versionNo; L58: L59: public void clear() { L60: allRecordCount = 0; L61: allPageCount = 0; L62: existPrePage = false; L63: existNextPage = false; L64:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.5K bytes
  7. RoleBhv.java

    Pair<>(e.getKey(), (String) e.getValue())).collect(Collectors.toMap(Pair::getFirst, Pair::getSecond))); L51: return result; L52: } catch (InstantiationException | IllegalAccessException e) { L53: final String msg = "Cannot create a new instance: " + entityType.getName(); L54: throw new IllegalBehaviorStateException(msg, e); L55: } L56: } L57:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.2K bytes
  8. ThumbnailQueueDbm.java

    Column Info L129: // =========== L130: protected final ColumnInfo _columnCreatedBy = cci("createdBy", "createdBy", null, null, String.class, "createdBy", null, false, false, L131: false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); L132: protected final ColumnInfo _columnCreatedTime = cci("createdTime", "createdTime", null, null,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.8K bytes
  9. Secured.java

    * The <code>Secured</code> annotation is used to define a list of security configuration L30: * attributes for business methods. L31: * <p> L32: * For example: L33: * L34: * <pre> L35: * &#064;Secured({ &quot;ROLE_USER&quot; }) L36: * public void create(Contact contact); L37: * L38: * &#064;Secured({ &quot;ROLE_USER&quot;, &quot;ROLE_ADMIN&quot; }) L39: * public void update(Contact contact); L40: * L41: * &#064;Secured({ &quot;ROLE_ADMIN&quot; }) L42: * public void delete(Contact contact); L43: *...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.8K bytes
  10. admin_storage.jsp

    class="data-wrapper"> L67: L68: <c:if test="${editable}"> L69: <div class="modal" id="createDir" tabindex="-1" role="dialog"> L70: <div class="modal-dialog"> L71: <la:form action="/admin/storage/createDir/" L72: enctype="multipart/form-data" styleClass="modal-content"> L73: ...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu May 26 01:48:41 UTC 2022
      20.4K bytes
Back to top