Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 262144 (0.14 sec)

  1. src/main/resources/fess_config.properties

    virtual.host.headers=
    
    http.proxy.host=
    http.proxy.port=8080
    http.proxy.username=
    http.proxy.password=
    http.fileupload.max.size=262144000
    http.fileupload.threshold.size=262144
    http.fileupload.max.file.count=10
    
    # ========================================================================================
    #                                                                                   Index
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. 262144 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getHttpFileuploadThresholdSize();
    
        /**
         * Get the value for the key 'http.fileupload.threshold.size' as {@link Integer}. <br>
         * The value is, e.g. 262144 <br>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
  3. docs/hotfixes.md

    ```
    λ git checkout RELEASE.2021-04-22T15-44-28Z
    ```
    
    Create a branch and proceed to push the branch **upstream**
    > (upstream here points to ******@****.***:minio/minio.git)
    
    ```
    λ git branch -m RELEASE.2021-04-22T15-44-28Z.hotfix
    λ git push -u upstream RELEASE.2021-04-22T15-44-28Z.hotfix
    ```
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.26.md

        - [Container Images](#container-images)
      - [Changelog since v1.26.14](#changelog-since-v12614)
      - [Changes by Kind](#changes-by-kind)
        - [Feature](#feature)
        - [Bug or Regression](#bug-or-regression)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    - [v1.26.14](#v12614)
      - [Downloads for v1.26.14](#downloads-for-v12614)
        - [Source Code](#source-code-1)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/MediaType.java

      /**
       * The 3GP multimedia container format. For more information, see <a
       * href="ftp://www.3gpp.org/tsg_sa/TSG_SA/TSGS_23/Docs/PDF/SP-040065.pdf#page=10">3GPP TS
       * 26.244</a>.
       *
       * @since 20.0
       */
      public static final MediaType THREE_GPP_VIDEO = createConstant(VIDEO_TYPE, "3gpp");
    
      /**
       * The 3G2 multimedia container format. For more information, see <a
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Sep 26 19:15:09 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X2130,
        X2131,
        X2132,
        X2133,
        X2134,
        X2135,
        X2136,
        X2137,
        X2138,
        X2139,
        X2140,
        X2141,
        X2142,
        X2143,
        X2144,
        X2145,
        X2146,
        X2147,
        X2148,
        X2149,
        X2150,
        X2151,
        X2152,
        X2153,
        X2154,
        X2155,
        X2156,
        X2157,
        X2158,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        testSortDescending(new double[] {-1, -2, 1, 2}, 1, 3, new double[] {-1, 1, -2, 2});
        testSortDescending(
            new double[] {-1, 1, Double.NaN, -2, 2}, 1, 4, new double[] {-1, Double.NaN, 1, -2, 2});
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testLexicographicalComparatorSerializable() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/InetAddresses.java

        }
    
        // Many strategies for hashing are possible. This might suffice for now.
        int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
    
        // Squash into 224/4 Multicast and 240/4 Reserved space (i.e. 224/3).
        coercedHash |= 0xe0000000;
    
        // Fixup to avoid some "illegal" values. Currently the only potential
        // illegal value is 255.255.255.255.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        testSortDescending(new float[] {1, 3, 1}, 0, 1, new float[] {1, 3, 1});
        testSortDescending(new float[] {-1, -2, 1, 2}, 1, 3, new float[] {-1, 1, -2, 2});
        testSortDescending(
            new float[] {-1, 1, Float.NaN, -2, 2}, 1, 4, new float[] {-1, Float.NaN, 1, -2, 2});
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testStringConverterSerialization() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/DoublesTest.java

        testSortDescending(new double[] {-1, -2, 1, 2}, 1, 3, new double[] {-1, 1, -2, 2});
        testSortDescending(
            new double[] {-1, 1, Double.NaN, -2, 2}, 1, 4, new double[] {-1, Double.NaN, 1, -2, 2});
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testLexicographicalComparatorSerializable() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 32.2K bytes
    - Viewed (0)
Back to top