Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for decodeSimilarDocHash (0.14 sec)

  1. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

         *
         * @param hash the encoded hash string to decode
         * @return the decoded hash string, or the original hash if decoding fails
         */
        public String decodeSimilarDocHash(final String hash) {
            if (hash != null && hash.startsWith(SIMILAR_DOC_HASH_PREFIX) && hash.length() > SIMILAR_DOC_HASH_PREFIX.length()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                        context.addQuery(boolQuery -> {
                            boolQuery.filter(QueryBuilders.termQuery(fessConfig.getIndexFieldContentMinhashBits(),
                                    documentHelper.decodeSimilarDocHash(similarDocHash)));
                        });
                    }
    
                    if (geoInfo != null && geoInfo.toQueryBuilder() != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top