Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for 512K (0.02 seconds)

  1. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        }
    
        /**
         * Formats a file size in bytes to a human-readable string with appropriate units.
         *
         * @param value the file size in bytes
         * @return formatted file size string (e.g., "1.5M", "2.3G", "512K")
         */
        public static String formatFileSize(final long value) {
            double target = value;
            String unit = ""; // TODO l10n?
            String format = "0.#";
            if (value < 1024) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25.4K bytes
    - Click Count (1)
  2. src/test/java/org/codelibs/fess/storage/StorageItemTest.java

            assertEquals(largeSize, item.getSize());
        }
    
        public void test_rootPath() {
            final StorageItem item = new StorageItem("root-file.txt", "", false, 512L, null, "cm9vdC1maWxlLnR4dA==");
    
            assertEquals("root-file.txt", item.getName());
            assertEquals("", item.getPath());
        }
    
        public void test_deeplyNestedPath() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  3. .teamcity/performance-test-durations.json

        "testProject" : "nowInAndroidBuild",
        "linux" : 384,
        "windows" : 479,
        "macOs" : 368
      }, {
        "testProject" : "santaTrackerAndroidBuild",
        "linux" : 673,
        "windows" : 783,
        "macOs" : 512
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.AndroidIncrementalExecutionPerformanceTest.non-abi change",
      "durations" : [ {
        "testProject" : "nowInAndroidBuild",
        "linux" : 407,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 0-1 */
        String INDEX_auto_expand_replicas = "index.auto_expand_replicas";
    
        /** The key of the configuration. e.g. SHA-512 */
        String INDEX_ID_DIGEST_ALGORITHM = "index.id.digest.algorithm";
    
        /** The key of the configuration. e.g. admin */
        String INDEX_USER_initial_password = "index.user.initial_password";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  5. src/main/resources/fess_config.properties

    index.codec=default
    # Number of primary shards for the index.
    index.number_of_shards=5
    # Auto expand replicas setting for the index.
    index.auto_expand_replicas=0-1
    # Digest algorithm for index IDs.
    index.id.digest.algorithm=SHA-512
    # Initial password for the index user.
    index.user.initial_password=admin
    
    # field names
    
    # Field name for favorite count in the index.
    index.field.favorite_count=favorite_count
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
Back to Top