- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for rehash (0.04 sec)
-
DocumentHelper.java
new CrawlingAccessException("Failed to parse " + url, e); L222: } L223: } L224: L225: public String decodeSimilarDocHash(final String hash) { L226: if (hash != null && hash.startsWith(SIMILAR_DOC_HASH_PREFIX) && hash.length() > SIMILAR_DOC_HASH_PREFIX.length()) { L227: final byte[] decode = Base64.getUrlDecoder().decode(hash.substring(SIMILAR_DOC_HASH_PREFIX.length())); L228: try (BufferedReader reader = L229: new BufferedReader(new InputStreamReader(new...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 12K bytes -
DocumentHelperTest.java
documentHelper = new DocumentHelper(); L126: L127: String hash = "01010101010101010101010101010101"; L128: String value = "$H4sIAAAAAAAA_zMwNMALAXC7sg0gAAAA"; L129: assertEquals(value, documentHelper.encodeSimilarDocHash(hash)); L130: hash = "00101010010010100100101010001010"; L131: value = "$H4sIAAAAAAAA_zMwMARDCELQQApMAgAi5-3LIAAAAA"; L132: assertEquals(value, documentHelper.encodeSimilarDocHash(hash)); L133: hash = "0001010100100101001001010100010100...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 11K bytes -
FessUserLocaleProcessProvider.java
L65: // ============== L66: @Override L67: public String toString() { L68: final String hash = Integer.toHexString(hashCode()); L69: return DfTypeUtil.toClassTitle(this) + ":{acceptCookieLocale=" + isAcceptCookieLocale() + "}@" + hash; L70: } L71:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.8K bytes -
GoAction.java
} L125: } L126: } L127: hash = buf.toString(); L128: } else { L129: hash = StringUtil.EMPTY; L130: } L131: } else { L132: hash = StringUtil.EMPTY; L133: } L134: L135: if (!isFileSystemPath(targetUrl)) { L136: return HtmlResponse.fromRedirectPathAsIs(DocumentUtil.encodeUrl(targetUrl + hash)); L137: } L138: if (!fessConfig.isSearchFileProxyEnabled()) { L139:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.9K bytes -
SynonymItem.java
return newInputs != null && newOutputs != null; L87: } L88: L89: public boolean isDeleted() { L90: return isUpdated() && newInputs.length == 0; L91: } L92: L93: @Override L94: public int hashCode() { L95: return Objects.hash(Arrays.hashCode(inputs), Arrays.hashCode(outputs)); L96: } L97: L98: @Override L99: public boolean equals(final Object obj) { L100: if (this == obj) { L101: return true; L102: } L103: if (obj == null || getClass()...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 3.7K bytes -
DefaultSearcher.java
).get(fessConfig.getIndexFieldContentMinhashBits()); L88: if (bitsField != null && !bitsField.getValues().isEmpty()) { L89: docMap.put(fessConfig.getQueryCollapseInnerHitsName() + "_hash", bitsField.getValues().get(0)); L90: } L91: docMap.put(fessConfig.getQueryCollapseInnerHitsName(), StreamUtil.stream(innerSearchHits.getHits()) L92: ...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 06:56:21 UTC 2024 10.2K bytes -
KuromojiItem.java
L104: return newToken != null; L105: } L106: L107: public boolean isDeleted() { L108: return isUpdated() && newToken.length() == 0; L109: } L110: L111: @Override L112: public int hashCode() { L113: return Objects.hash(pos, reading, segmentation, token); L114: } L115: L116: @Override L117: public boolean equals(final Object obj) { L118: if (this == obj) { L119: return true; L120: } L121: if (obj == null || getClass() != obj.getClass())...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 4.5K bytes -
GoForm.java
L23:import jakarta.validation.constraints.Size; L24: L25:public class GoForm { L26: @Required L27: @Size(max = 100) L28: public String docId; L29: L30: @Size(max = 10000) L31: @Required L32: public String rt; L33: L34: public String hash; L35: L36: @Required L37: public String queryId; L38: L39: public Integer order; L40: L41: // for error page L42: L43: public String q; L44: L45: public String num; L46: L47: public String sort; L48: L49: public String lang;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.2K bytes -
StemmerOverrideItem.java
return newInput != null && newOutput != null; L70: } L71: L72: public boolean isDeleted() { L73: return isUpdated() && StringUtil.isBlank(newInput); L74: } L75: L76: @Override L77: public int hashCode() { L78: return Objects.hash(input, output); L79: } L80: L81: @Override L82: public boolean equals(final Object obj) { L83: if (this == obj) { L84: return true; L85: } L86: if (obj == null || getClass() != obj.getClass()) { L87: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 2.7K bytes -
CharMappingItem.java
(inputs != null) { L88: Arrays.sort(inputs); L89: } L90: if (newInputs != null) { L91: Arrays.sort(newInputs); L92: } L93: } L94: L95: @Override L96: public int hashCode() { L97: return Objects.hash(Arrays.hashCode(inputs), output); L98: } L99: L100: @Override L101: public boolean equals(final Object obj) { L102: if (this == obj) { L103: return true; L104: } L105: if (obj == null || getClass() != obj.getClass())...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 3.4K bytes