Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 10km (0.12 sec)

  1. src/main/java/org/codelibs/core/io/FileUtil.java

        /** Default Buffer Size */
        protected static final int DEFAULT_BUF_SIZE = 4096; // 4k
    
        /** Max Buffer Size */
        protected static final int MAX_BUF_SIZE = 10 * 1024 * 1024; // 10m
    
        /**
         * この抽象パス名の正規の形式を返します。
         *
         * @param file
         *            ファイル。{@literal null}であってはいけません
         * @return この抽象パス名と同じファイルまたはディレクトリを示す正規パス名文字列
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_BULK_TIMEOUT = "index.bulk.timeout";
    
        /** The key of the configuration. e.g. 3m */
        String INDEX_DELETE_TIMEOUT = "index.delete.timeout";
    
        /** The key of the configuration. e.g. 10m */
        String INDEX_HEALTH_TIMEOUT = "index.health.timeout";
    
        /** The key of the configuration. e.g. 1m */
        String INDEX_INDICES_TIMEOUT = "index.indices.timeout";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  3. android/guava/src/com/google/common/hash/BloomFilter.java

         * is proportional to -log(p), but there is not much of a point after all, e.g.
         * optimalM(1000, 0.0000000000000001) = 76680 which is less than 10kb. Who cares!
         */
        long numBits = optimalNumOfBits(expectedInsertions, fpp);
        int numHashFunctions = optimalNumOfHashFunctions(expectedInsertions, numBits);
        try {
    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. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_facet_contentLength_title = "{labels.facet_contentLength_title}";
    
        /** The key of the message:   - 10kb */
        public static final String LABELS_facet_contentLength_10k = "{labels.facet_contentLength_10k}";
    
        /** The key of the message: 10kb - 100kb */
        public static final String LABELS_facet_contentLength_10kto100k = "{labels.facet_contentLength_10kto100k}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top