Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MURMUR3_128 (0.26 sec)

  1. android/guava/src/com/google/common/hash/Hashing.java

       */
      @SuppressWarnings("IdentifierName") // the best we could do for adjacent digit blocks
      public static HashFunction murmur3_128() {
        return Murmur3_128HashFunction.MURMUR3_128;
      }
    
      /**
       * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit
       * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/Hashing.java

       */
      @SuppressWarnings("IdentifierName") // the best we could do for adjacent digit blocks
      public static HashFunction murmur3_128() {
        return Murmur3_128HashFunction.MURMUR3_128;
      }
    
      /**
       * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit
       * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:06:57 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  3. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

         */
        protected static final String[] timestampFields = { LAST_MODIFIED, CREATE_TIME };
    
        /**
         * Hash function for generating IDs.
         */
        protected static final HashFunction murmur3Hash = Hashing.murmur3_128(0);
    
        /**
         * FesenClient instance.
         */
        @Resource
        protected volatile FesenClient fesenClient;
    
        /**
         * Index name.
         */
        protected String index;
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 34.2K bytes
    - Viewed (0)
Back to top