Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for wronghostname (0.05 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

        server.enqueue(MockResponse())
        val serverCertificate =
          HeldCertificate
            .Builder()
            .commonName("localhost") // Unusued for hostname verification.
            .addSubjectAlternativeName("wronghostname")
            .build()
        val serverCertificates =
          HandshakeCertificates
            .Builder()
            .heldCertificate(serverCertificate)
            .build()
        val clientCertificates =
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/netbios/LmhostsTest.java

            // Create a temporary lmhosts file with long hostname
            String longHostname = "VERYLONGHOSTNAMETHATSHOULDSTILLWORK";
            File lmhostsFile = tempDir.resolve("lmhosts_long").toFile();
            try (FileWriter writer = new FileWriter(lmhostsFile)) {
                writer.write("192.168.1.100 " + longHostname + "\n");
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.2K bytes
    - Viewed (0)
Back to top