- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for Breiding (0.06 sec)
-
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 -
elevate_word.json
L1:{ L2: "properties": { L3: "suggestWord": { L4: "type": "keyword" L5: }, L6: "reading": { L7: "type": "keyword" L8: }, L9: "permissions": { L10: "type": "keyword" L11: }, L12: "boost": { L13: "type": "float" L14: }, L15: "createdBy": { L16: "type": "keyword" L17: }, L18: "createdTime": { L19: "type": "long" L20: }, L21: "updatedBy": { L22: "type": "keyword" L23: }, L24: ...github.com/codelibs/fess/src/main/resources/fes...Thu Dec 02 13:14:56 UTC 2021 471 bytes -
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 -
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 -
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 -
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 -
admin_dict_kuromoji_edit.jsp
row"> L121: <label for="reading" class="col-sm-3 text-sm-right col-form-label"><la:message L122: key="labels.dict_kuromoji_reading"/></label> L123: <div class="col-sm-9"> L124: <la:errors property="reading"/> L125: <la:text styleId="reading" property="reading" styleClass="form-control"/> L126: ...github.com/codelibs/fess/src/main/webapp/WEB-IN...Wed Feb 12 20:25:27 UTC 2020 8.6K bytes -
admin_elevateword_edit.jsp
row"> L107: <label for="reading" class="col-sm-3 text-sm-right col-form-label"><la:message L108: key="labels.elevate_word_reading"/></label> L109: <div class="col-sm-9"> L110: <la:errors property="reading"/> L111: <la:text styleId="reading" property="reading" styleClass="form-control"/> L112: ...github.com/codelibs/fess/src/main/webapp/WEB-IN...Thu Feb 13 07:47:04 UTC 2020 9.2K bytes -
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 -
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