Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ec (0.01 sec)

  1. module-tests/build.gradle.kts

    application {
      mainClass = "okhttp3.modules.Main"
      mainModule = "okhttp3.modules"
    }
    
    jlinkApplication {
      stripDebug = true
      stripJavaDebugAttributes = true
      compress.set("zip-9")
      addModules.addAll("jdk.crypto.ec", "java.logging")
      vm.set("server")
    }
    
    extraJavaModuleInfo {
      module("org.jetbrains:annotations", "org.jetbrains.annotations") {
        exportAllPackages()
      }
      module("com.squareup.okio:okio-jvm", "okio") {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:45:42 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. module-tests/src/main/java/module-info.java

    @SuppressWarnings("module")
    module okhttp3.modules {
      requires okhttp3;
      requires okhttp3.logging;
      requires jdk.crypto.ec;
      exports okhttp3.modules;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 156 bytes
    - Viewed (0)
  3. module-tests/src/test/java/module-info.java

    @SuppressWarnings("module")
    module okhttp3.modules.test {
      requires okhttp3;
      requires okhttp3.logging;
      requires mockwebserver3;
      requires mockwebserver3.junit5;
      requires jdk.crypto.ec;
      requires org.junit.jupiter.api;
      requires okhttp3.modules;
      opens okhttp3.modules.test to org.junit.platform.commons;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 317 bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                return false;
            }
            return true;
        }
    
        private static boolean checkEncryptionContext(final Smb2NegotiateRequest req, final EncryptionNegotiateContext ec) {
            if (ec.getCiphers() == null || ec.getCiphers().length != 1) {
                log.error("Server returned no cipher selection");
                return false;
            }
    
            EncryptionNegotiateContext rec = null;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/graph/TraverserTest.java

       * b ---- a ---- d
       * |      |
       * |      |
       * e ---- c ---- f
       * }
       */
      private static final SuccessorsFunction<Character> JAVADOC_GRAPH =
          createUndirectedGraph("ba", "ad", "be", "ac", "ec", "cf");
    
      /**
       * A diamond shaped directed graph (arrows going down):
       *
       * {@snippet :
       *   a
       *  / \
       * b   c
       *  \ /
       *   d
       * }
       */
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 17:09:51 UTC 2025
    - 47.4K bytes
    - Viewed (2)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="-----BEGIN DSA PARAMETERS-----" type="string" offset="0"/>
        </magic>
      </mime-type>
      <mime-type type="application/x-x509-ec-parameters">
        <magic priority="50">
          <!-- PEM encoded only -->
          <match value="-----BEGIN EC PARAMETERS-----" type="string" offset="0"/>
        </magic>
      </mime-type>
      <mime-type type="application/x-java-keystore">
      	<_comment>Java Keystore</_comment>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Oct 16 07:46:32 UTC 2025
    - 320.2K bytes
    - Viewed (5)
Back to top