Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 504 for created (0.06 sec)

  1. BsWebAuthentication.java

    "authRealm"); L175: this.authRealm = value; L176: } L177: L178: public String getCreatedBy() { L179: checkSpecifiedProperty("createdBy"); L180: return convertEmptyToNull(createdBy); L181: } L182: L183: public void setCreatedBy(String value) { L184: registerModifiedProperty("createdBy"); L185: this.createdBy = value; L186: } L187: L188: public Long getCreatedTime() { L189: checkSpecifiedProperty("createdTime"); L190: return createdTime;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9K bytes
  2. BsDataConfig.java

    registerModifiedProperty("boost"); L199: this.boost = value; L200: } L201: L202: public String getCreatedBy() { L203: checkSpecifiedProperty("createdBy"); L204: return convertEmptyToNull(createdBy); L205: } L206: L207: public void setCreatedBy(String value) { L208: registerModifiedProperty("createdBy"); L209: this.createdBy = value; L210: } L211: L212: public Long getCreatedTime() { L213: checkSpecifiedProperty("createdTime"); L214: return createdTime;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  3. SynonymItem.java

    newOutputs; L34: L35: public SynonymItem(final long id, final String[] inputs, final String[] outputs) { L36: this.id = id; L37: this.inputs = inputs; L38: this.outputs = outputs; L39: L40: if (id == 0) { L41: // create L42: newInputs = inputs; L43: newOutputs = outputs; L44: } L45: } L46: L47: public String[] getNewInputs() { L48: return newInputs; L49: } L50: L51: public void setNewInputs(final String[] newInputs)...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      3.7K bytes
  4. DataConfigDbm.java

    "boost", null, null, Float.class, "boost", null, false, false, false, "Float", 0, L147: 0, null, null, false, null, null, null, null, null, false); L148: protected final ColumnInfo _columnCreatedBy = cci("createdBy", "createdBy", null, null, String.class, "createdBy", null, false, false, L149: false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); L150: 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
      13.8K bytes
  5. GroupBhv.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
  6. DictionaryManagerTest.java

    ) throws Exception { L59: final DictionaryManager dictionaryManager = new DictionaryManager(); L60: final SynonymCreator synonymCreator = new SynonymCreator(); L61: final SynonymFile synonymFile = (SynonymFile) synonymCreator.create(file1.getPath(), new Date()); L62: dictionaryManager.store(synonymFile, file1); L63: final DictionaryFile<? extends DictionaryItem>[] synonymFiles = dictionaryManager.getDictionaryFiles(); L64: assertEquals(1, synonymFiles.length);...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.4K bytes
  7. FileConfigPager.java

    L49: public String paths; L50: L51: public String numOfThread; L52: L53: public String intervalTime; L54: L55: public String boost; L56: L57: public String available; L58: L59: public String sortOrder; L60: L61: public String createdBy; L62: L63: public String createdTime; L64: L65: public String versionNo; L66: L67: public String description; L68: L69: public void clear() { L70: allRecordCount = 0; L71: allPageCount = 0; L72: existPrePage = false;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.8K bytes
  8. BsWebConfig.java

    eter"); L272: this.configParameter = value; L273: } L274: L275: public String getCreatedBy() { L276: checkSpecifiedProperty("createdBy"); L277: return convertEmptyToNull(createdBy); L278: } L279: L280: public void setCreatedBy(String value) { L281: registerModifiedProperty("createdBy"); L282: this.createdBy = value; L283: } L284: L285: public Long getCreatedTime() { L286: checkSpecifiedProperty("createdTime"); L287: return createdTime;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      14.1K bytes
  9. sequenceMap.dfprop

    ---------------- L2:# sequenceMap: (NotRequired - Default map:{}) L3:# L4:# The relation mappings between sequence and table. L5:# If you don't specify the mappings, you cannot insert a record of the table by sequence. L6:# The table names are treated as case insensitive. L7:# L8:# Example: L9:# map:{ L10:# ; PURCHASE = SEQ_PURCHASE L11:# ; MEMBER = SEQ_MEMBER L12:# ; MEMBER_LOGIN = SEQ_MEMBER_LOGIN L13:# ; PRODUCT = SEQ_PRODUCT L14:# } L15:# L16:# *The line that...
    github.com/codelibs/fess/dbflute_fess/dfprop/se...
    Sat Oct 31 23:35:14 UTC 2015
      717 bytes
  10. AdminWebauthAction.java

    L195: // Actually Crud L196: // ------------- L197: @Execute L198: @Secured({ ROLE }) L199: public HtmlResponse create(final CreateForm form) { L200: verifyCrudMode(form.crudMode, CrudMode.CREATE); L201: validate(form, messages -> {}, this::asEditHtml); L202: verifyToken(this::asEditHtml); L203: getWebAuthentication(form).ifPresent(entity -> { L204: try { L205: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.7K bytes
Back to top