Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sherbet (0.17 sec)

  1. android/guava/src/com/google/common/net/MediaType.java

          createConstant(
              APPLICATION_TYPE, "vnd.openxmlformats-officedocument.presentationml.presentation");
      public static final MediaType OOXML_SHEET =
          createConstant(APPLICATION_TYPE, "vnd.openxmlformats-officedocument.spreadsheetml.sheet");
      public static final MediaType OPENDOCUMENT_GRAPHICS =
          createConstant(APPLICATION_TYPE, "vnd.oasis.opendocument.graphics");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilter.java

          Funnel<? super T> funnel, long expectedInsertions) {
        return create(funnel, expectedInsertions, 0.03); // FYI, for 3%, we always get 5 hash functions
      }
    
      // Cheat sheet:
      //
      // m: total bits
      // n: expected insertions
      // b: m/n, bits per insertion
      // p: expected false positive probability
      //
      // 1) Optimal k = b * ln2
      // 2) p = (1 - e ^ (-kn/m))^k
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 23.1K bytes
    - Viewed (0)
Back to top