Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sherbet (0.31 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * application/vnd.ms-excel=excel<br>
         * application/vnd.ms-excel.sheet.2=excel<br>
         * application/vnd.ms-excel.sheet.3=excel<br>
         * application/vnd.ms-excel.sheet.4=excel<br>
         * application/vnd.ms-excel.workspace.3=excel<br>
         * application/vnd.ms-excel.workspace.4=excel<br>
         * application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=excel<br>
         * application/vnd.ms-powerpoint=powerpoint<br>
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/XslTransformer.java

    public class XslTransformer {
        public static void main(String[] args) throws TransformerException, IOException {
            if (args.length < 3 || args.length > 4) {
                throw new IllegalArgumentException("USAGE: <style-sheet> <source-file> <dest-file> [dest-dir]");
            }
            File stylesheet = new File(args[0]);
            File source = new File(args[1]);
            File dest = new File(args[2]);
            String destDir = "";
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 05 19:36:14 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
Back to top