Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for compression (0.94 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            }
        }
    
        /**
         * Compresses data using GZIP compression.
         *
         * @param data The data to compress
         * @return GZIP-compressed data
         * @throws IORuntimeException if compression fails
         */
        protected byte[] gzipCompress(final byte[] data) {
            try (final ByteArrayOutputStream bos = new ByteArrayOutputStream()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

                        logger.debug("Failed to decode {}", hash, e);
                    }
                }
            }
            return hash;
        }
    
        /**
         * Encodes a similar document hash using GZIP compression and Base64 encoding.
         * This reduces storage space for hash values while maintaining uniqueness.
         *
         * @param hash the hash string to encode
    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. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

           * VarHandle in guava-android, even if they're unused under Android, we cause errors under
           * AGP: https://github.com/google/guava/issues/7769.
           *
           * My impression is that an AtomicReferenceFieldUpdater in a static field is similarly fast to
           * Unsafe on modern JVMs (if perhaps not quite as fast as VarHandle?). However, I'm not sure
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
Back to top