- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for MEDIUM (0.03 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt
encodings[ 0x16] = encoding // Synchronous idle encodings[ 0x17] = encoding // End of Transmission Block encodings[ 0x18] = encoding // Cancel encodings[ 0x19] = encoding // End of Medium encodings[ 0x1a] = encoding // Substitute encodings[ 0x1b] = encoding // Escape encodings[ 0x1c] = encoding // File Separator encodings[ 0x1d] = encoding // Group Separator
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.3K bytes - Viewed (0)