Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Breiding (0.08 sec)

  1. BsElevateWord.java

    ty("permissions"); L177: this.permissions = value; L178: } L179: L180: public String getReading() { L181: checkSpecifiedProperty("reading"); L182: return convertEmptyToNull(reading); L183: } L184: L185: public void setReading(String value) { L186: registerModifiedProperty("reading"); L187: this.reading = value; L188: } L189: L190: public String getSuggestWord() { L191: checkSpecifiedProperty("suggestWord"); L192: return convertEm...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.1K bytes
  2. KuromojiItem.java

    if (!Objects.equals(pos, other.pos) || !Objects.equals(reading, other.reading) || !Objects.equals(segmentation, other.segmentation) L126: || !Objects.equals(token, other.token)) { L127: return false; L128: } L129: return true; L130: } L131: L132: @Override L133: public String toString() { L134: return "KuromojiItem [token=" + token + ", segmentation=" + segmentation + ", reading=" + reading + ", pos=" + pos + ", newToken=" L135: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      4.5K bytes
  3. KuromojiTests.java

    Map<String, Object> requestBody = new HashMap<>(); L68: final String keyProp = NAME_PREFIX + id; L69: requestBody.put(KEY_PROPERTY, keyProp); L70: requestBody.put("segmentation", "segment"); L71: requestBody.put("reading", "reading"); L72: requestBody.put("pos", "pos"); L73: return requestBody; L74: } L75: L76: @Override L77: protected Map<String, Object> getUpdateMap() { L78: final Map<String, Object> updateMap = new HashMap<>(); L79: ...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.5K bytes
  4. ElevateWord.java

    toString() { L110: return "ElevateWord [labelTypeIds=" + Arrays.toString(labelTypeIds) + ", labelTypeList=" + labelTypeList + ", boost=" + boost L111: + ", createdBy=" + createdBy + ", createdTime=" + createdTime + ", reading=" + reading + ", suggestWord=" + suggestWord L112: + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", docMeta=" + docMeta + "]"; L113: } L114: L115:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.3K bytes
  5. CreateForm.java

    Integer crudMode; L35: L36: @Required L37: @Size(max = 1000) L38: public String token; L39: L40: @Required L41: @Size(max = 1000) L42: public String segmentation; L43: L44: @Required L45: @Size(max = 1000) L46: public String reading; L47: L48: @Required L49: @Size(max = 1000) L50: public String pos; L51: L52: public void initialize() { L53: crudMode = CrudMode.CREATE; L54: } L55:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.4K bytes
  6. CreateForm.java

    Keiichi Watanabe L28: */ L29:public class CreateForm { L30: L31: public String[] labelTypeIds; L32: L33: @ValidateTypeFailure L34: public Integer crudMode; L35: L36: @Required L37: public String suggestWord; L38: L39: public String reading; L40: L41: public String targetLabel; L42: L43: @CustomSize(maxKey = "form.admin.max.input.size") L44: public String permissions; L45: L46: @Required L47: @ValidateTypeFailure L48: public Float boost; L49: L50: @Size(max = 1000)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.7K bytes
  7. KuromojiFile.java

    eplacedLine); L143: String token = null; L144: String segmentation = null; L145: String reading = null; L146: String pos = null; L147: switch (values.length) { L148: case 4: L149: pos = values[3]; L150: case 3: L151: reading = values[2]; L152: case 2: L153: segmentation = values[1]; L154: case 1: L155: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.7K bytes
  8. KuromojiFileTest.java

    L78: final KuromojiItem kuromojiItem = itemList.get(i); L79: assertEquals("token" + (i + 1), kuromojiItem.getToken()); L80: assertEquals("seg" + (i + 1), kuromojiItem.getSegmentation()); L81: assertEquals("reading" + (i + 1), kuromojiItem.getReading()); L82: assertEquals("pos" + (i + 1), kuromojiItem.getPos()); L83: assertFalse(kuromojiItem.isUpdated()); L84: assertFalse(kuromojiItem.isUpdated()); L85: } L86: } L87:...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.3K bytes
  9. ApiAdminDictKuromojiAction.java

    createEditBody(final KuromojiItem entity, final String dictId) { L151: final EditBody body = new EditBody(); L152: body.id = entity.getId(); L153: body.dictId = dictId; L154: body.token = entity.getToken(); L155: body.reading = entity.getReading(); L156: body.pos = entity.getPos(); L157: body.segmentation = entity.getSegmentation(); L158: return body; L159: } L160:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.3K bytes
  10. BsElevateWordCB.java

    columnCreatedTime() { L188: doColumn("createdTime"); L189: } L190: L191: public void columnPermissions() { L192: doColumn("permissions"); L193: } L194: L195: public void columnReading() { L196: doColumn("reading"); L197: } L198: L199: public void columnSuggestWord() { L200: doColumn("suggestWord"); L201: } L202: L203: public void columnUpdatedBy() { L204: doColumn("updatedBy"); L205: } L206: L207: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7K bytes
Back to top