Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for 8232 (0.02 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk9Platform.kt

        // sun.security.ssl to unnamed module @xxx
        throw UnsupportedOperationException(
          "clientBuilder.sslSocketFactory(SSLSocketFactory) not supported on JDK 8 (>= 252) or JDK 9+",
        )
      }
    
      override fun newSSLContext(): SSLContext {
        return when {
          majorVersion != null && majorVersion >= 9 ->
            SSLContext.getInstance("TLS")
          else ->
            try {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. fuzzing/fuzzingserver-expected.txt

    "12.3.10 UNIMPLEMENTED"
    "12.3.11 UNIMPLEMENTED"
    "12.3.12 UNIMPLEMENTED"
    "12.3.13 UNIMPLEMENTED"
    "12.3.14 UNIMPLEMENTED"
    "12.3.15 UNIMPLEMENTED"
    "12.3.16 UNIMPLEMENTED"
    "12.3.17 UNIMPLEMENTED"
    "12.3.18 UNIMPLEMENTED"
    "12.3.2 UNIMPLEMENTED"
    "12.3.3 UNIMPLEMENTED"
    "12.3.4 UNIMPLEMENTED"
    "12.3.5 UNIMPLEMENTED"
    "12.3.6 UNIMPLEMENTED"
    "12.3.7 UNIMPLEMENTED"
    "12.3.8 UNIMPLEMENTED"
    "12.3.9 UNIMPLEMENTED"
    "12.4.1 UNIMPLEMENTED"
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2', '3'}, -2, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, -1, new char[] {'2', '3', '1'});
        testRotate(new char[] {'1', '2', '3'}, 0, new char[] {'1', '2', '3'});
        testRotate(new char[] {'1', '2', '3'}, 1, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, 2, new char[] {'2', '3', '1'});
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/UnsignedInteger.java

       * interpreted as a normal bit, and all other bits are treated as usual.
       *
       * <p>If the argument is nonnegative, the returned result will be equal to {@code bits},
       * otherwise, the result will be equal to {@code 2^32 + bits}.
       *
       * <p>To represent unsigned decimal constants, consider {@link #valueOf(long)} instead.
       *
       * @since 14.0
       */
      public static UnsignedInteger fromIntBits(int bits) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/UnsignedInteger.java

       * interpreted as a normal bit, and all other bits are treated as usual.
       *
       * <p>If the argument is nonnegative, the returned result will be equal to {@code bits},
       * otherwise, the result will be equal to {@code 2^32 + bits}.
       *
       * <p>To represent unsigned decimal constants, consider {@link #valueOf(long)} instead.
       *
       * @since 14.0
       */
      public static UnsignedInteger fromIntBits(int bits) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/test/resources/plugin/repo3/fess-crawler-webdriver/maven-metadata.xml

          <version>2.2.0</version>
          <version>2.2.1</version>
          <version>2.2.2</version>
          <version>2.2.3</version>
          <version>2.3.0</version>
          <version>2.3.1</version>
          <version>2.3.2</version>
          <version>2.3.3</version>
          <version>2.3.4</version>
          <version>2.3.5</version>
          <version>2.3.6</version>
          <version>2.4.0</version>
          <version>2.4.1</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        testRotate(new double[] {1, 2, 3}, -2, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, -1, new double[] {2, 3, 1});
        testRotate(new double[] {1, 2, 3}, 0, new double[] {1, 2, 3});
        testRotate(new double[] {1, 2, 3}, 1, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, 2, new double[] {2, 3, 1});
        testRotate(new double[] {1, 2, 3}, 3, new double[] {1, 2, 3});
    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. android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

        rangeMap.putCoalescing(Range.closedOpen(0, 1), 1);
        rangeMap.putCoalescing(Range.closedOpen(1, 2), 1);
        rangeMap.putCoalescing(Range.closedOpen(2, 3), 2);
        assertEquals(
            ImmutableMap.of(Range.closedOpen(0, 2), 1, Range.closedOpen(2, 3), 2),
            rangeMap.asMapOfRanges());
      }
    
      public void testPutCoalescingEmpty() {
        RangeMap<Integer, Integer> rangeMap = TreeRangeMap.create();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sun Oct 06 13:04:03 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  9. src/test/resources/plugin/repo3/fess-crawler-es/maven-metadata.xml

          <version>2.2.0</version>
          <version>2.2.1</version>
          <version>2.2.2</version>
          <version>2.2.3</version>
          <version>2.3.0</version>
          <version>2.3.1</version>
          <version>2.3.2</version>
          <version>2.3.3</version>
          <version>2.3.4</version>
          <version>2.3.5</version>
          <version>2.3.6</version>
          <version>2.4.0</version>
          <version>2.4.1</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. gradle/libs.versions.toml

    [versions]
    biz-aQute-bnd = "6.4.0"
    checkStyle = "10.19.0"
    com-squareup-moshi = "1.15.1"
    com-squareup-okio = "3.9.1"
    de-mannodermaus-junit5 = "1.5.0"
    graalvm = "22.3.2"
    kotlinx-serialization = "1.6.3"
    ksp = "1.9.24-1.0.20"
    mockserverClient = "5.15.0"
    org-bouncycastle = "1.76"
    org-conscrypt = "2.5.2"
    org-jetbrains-coroutines = "1.8.1"
    org-jetbrains-kotlin = "1.9.25"
    org-junit-jupiter = "5.11.0"
    retrofit = "2.11.0"
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Oct 28 11:53:44 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top