- Sort Score
- Result 10 results
- Languages All
Results 11 - 19 of 19 for isDeleted (0.07 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
} /** * Checks if the item has been marked for deletion. * * @return true if the item is marked for deletion, false otherwise. */ public boolean isDeleted() { return isUpdated() && newInputs.length == 0; } @Override public int hashCode() { return Objects.hash(Arrays.hashCode(inputs), Arrays.hashCode(outputs)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java
return newToken != null; } /** * Returns true if the item has been deleted. * * @return True if the item has been deleted. */ public boolean isDeleted() { return isUpdated() && newToken.length() == 0; } @Override public int hashCode() { return Objects.hash(pos, reading, segmentation, token); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
throw new DictionaryException("Kuromoji file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
throw new DictionaryException("Mapping file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
throw new DictionaryException("Protwords file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
throw new DictionaryException("Synonym file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
throw new DictionaryException("Stopwords file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
throw new DictionaryException("StemmerOverride file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
// skip continue; } try { boolean isDelete = false; if (targetWord.startsWith(DELETE_PREFIX)) { isDelete = true; targetWord = targetWord.substring(2); } final String target = targetWord;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.6K bytes - Viewed (0)