- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for decodeSimilarDocHash (0.15 sec)
-
src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java
assertEquals(hash, documentHelper.decodeSimilarDocHash(value)); hash = ""; value = ""; assertEquals(hash, documentHelper.decodeSimilarDocHash(value)); assertNull(documentHelper.decodeSimilarDocHash(null)); } public void test_appendLineNumber() { DocumentHelper documentHelper = new DocumentHelper();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
} return null; } catch (final Exception e) { throw new CrawlingAccessException("Failed to parse " + url, e); } } public String decodeSimilarDocHash(final String hash) { if (hash != null && hash.startsWith(SIMILAR_DOC_HASH_PREFIX) && hash.length() > SIMILAR_DOC_HASH_PREFIX.length()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12K bytes - Viewed (0)