Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Breiding (0.06 sec)

  1. 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
  2. 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
Back to top