- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for MEDIUM (0.07 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) -
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) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
void testSize8Alignment() throws Exception { // Given - Various path lengths to test alignment String[] paths = { "\\\\a\\b", // Short path "\\\\server\\share", // Medium path "\\\\server.domain.com\\longshare" // Long path }; Method size8Method = ServerMessageBlock2.class.getDeclaredMethod("size8", int.class); size8Method.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
gradle/wrapper/gradle-wrapper.jar
infringement, then any patent licenses granted to You under this License for that Work shall terminate 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 Derivative Works a copy of this License; and (b) You must cause any modified files...
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 44.4K bytes - Viewed (1) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt
// paragraph separator assertThat(parse("http://h/\u2029").encodedPath).isEqualTo("/%E2%80%A9") // narrow non-breaking space assertThat(parse("http://h/\u202f").encodedPath).isEqualTo("/%E2%80%AF") // medium mathematical space assertThat(parse("http://h/\u205f").encodedPath).isEqualTo("/%E2%81%9F") // ideographic space assertThat(parse("http://h/\u3000").encodedPath).isEqualTo("/%E3%80%80") } @Test
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Aug 04 07:38:48 UTC 2025 - 69.9K bytes - Viewed (0)