Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0_301 (0.06 sec)

  1. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            System.setProperty("java.version", "17.0.2+8");
            assertEquals(17, JvmUtil.getJavaVersion());
    
            // Test with underscore separators in old format
            System.setProperty("java.version", "1.8.0_301");
            assertEquals(8, JvmUtil.getJavaVersion());
        }
    
        public void test_getJavaVersion_variousFormats() {
            // Test different separator combinations
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

       */
      @Test
      fun anonCipherSuiteUnsupported() {
        platform.assumeNotConscrypt()
        platform.assumeNotBouncyCastle()
    
        // The _anon_ suites became unsupported in "1.8.0_201" and "11.0.2".
        assumeFalse(
          System.getProperty("java.version", "unknown").matches(Regex("1\\.8\\.0_1\\d\\d")),
        )
        server.enqueue(MockResponse())
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
Back to top