Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for MEDIUM (0.03 sec)

  1. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style in the default locale.
         *
         * @return the pattern string for {@link DateFormat#MEDIUM} style
         */
        public static String getMediumPattern() {
            return getMediumPattern(LocaleUtil.getDefault());
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style in the specified locale.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style in the default locale.
         *
         * @return the pattern string for {@link DateFormat#MEDIUM} style
         */
        public static String getMediumPattern() {
            return getMediumPattern(LocaleUtil.getDefault());
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style in the specified locale.
         *
         * @param locale
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style using the default locale.
         *
         * @return the pattern string for {@link DateFormat#MEDIUM} style
         */
        public static String getMediumPattern() {
            return getMediumPattern(LocaleUtil.getDefault());
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style using the specified locale.
         *
         * @param locale
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt

    internal infix fun Int.and(mask: Long): Long = toLong() and mask
    
    @Throws(IOException::class)
    internal fun BufferedSink.writeMedium(medium: Int) {
      writeByte(medium.ushr(16) and 0xff)
      writeByte(medium.ushr(8) and 0xff)
      writeByte(medium and 0xff)
    }
    
    @Throws(IOException::class)
    internal fun BufferedSource.readMedium(): Int =
      (
        readByte() and 0xff shl 16
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Ascii.java

       */
      public static final byte CAN = 24;
    
      /**
       * End of Medium: A control character associated with the sent data which may be used to identify
       * the physical end of the medium, or the end of the used, or wanted, portion of information
       * recorded on a medium. (The position of this character does not necessarily correspond to the
       * physical end of the medium.)
       *
       * @since 8.0
       */
      public static final byte EM = 25;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  6. docs/SMB3_IMPLEMENTATION_PLAN.md

    - Modify `SmbSession` for handle replay during reconnection
    - Update `Smb2CreateRequest/Response` for durable contexts
    
    ---
    
    ### Phase 3: Multi-Channel Support
    **Priority: MEDIUM** | **Estimated Effort: 5-6 weeks**
    
    Multi-channel enables using multiple network connections for improved performance and reliability.
    
    #### 3.1 Core Multi-Channel Infrastructure
    ```
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  7. apache-maven/pom.xml

        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-wagon</artifactId>
        </dependency>
        <!-- HTTP/1.1, medium priority, Java8+ -->
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-apache</artifactId>
        </dependency>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Sep 06 21:30:13 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/util/CryptoTest.java

            assertEquals(8, encrypted.length);
            assertNotEquals(new String(plaintext), new String(encrypted));
        }
    
        @ParameterizedTest
        @ValueSource(strings = { "", "a", "short", "medium length text", "very long text that exceeds typical block sizes" })
        @DisplayName("Should handle various input sizes for hashing")
        void testHashVariousInputSizes(String input) {
            // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. LICENSES/vendor/github.com/containerd/errdefs/pkg/LICENSE

          as of the date such litigation is filed.
    
       4. Redistribution. You may reproduce and distribute copies of the
          Work or Derivative Works thereof in any medium, with or without
          modifications, and in Source or Object form, provided that You
          meet the following conditions:
    
          (a) You must give any other recipients of the Work or
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 05 11:36:39 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/SmbCircuitBreakerTest.java

                });
    
                cbWithMetrics.executeWithCircuitBreaker(() -> {
                    try {
                        Thread.sleep(200);
                    } catch (InterruptedException e) {}
                    return "medium";
                });
    
                cbWithMetrics.executeWithCircuitBreaker(() -> {
                    try {
                        Thread.sleep(300);
                    } catch (InterruptedException e) {}
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.2K bytes
    - Viewed (0)
Back to top