Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for handshakes (0.81 sec)

  1. src/net/http/transport_test.go

    	if !ok {
    		t.Errorf("expected net.Error; got %#v", err)
    		return
    	}
    	if !ne.Timeout() {
    		t.Errorf("expected timeout error; got %v", err)
    	}
    	if !strings.Contains(err.Error(), "handshake timeout") {
    		t.Errorf("expected 'handshake timeout' in error; got %v", err)
    	}
    }
    
    // Trying to repro golang.org/issue/3514
    func TestTLSServerClosesConnection(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

        val cipherSuite = response1.handshake!!.cipherSuite
        val localCerts = response1.handshake!!.localCertificates
        val serverCerts = response1.handshake!!.peerCertificates
        val peerPrincipal = response1.handshake!!.peerPrincipal
        val localPrincipal = response1.handshake!!.localPrincipal
        val response2 = client.newCall(request).execute() // Cached!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  4. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/EventListener;->secureConnectEnd(Lokhttp3/Call;Lokhttp3/Handshake;)V
    HSPLokhttp3/EventListener;->secureConnectStart(Lokhttp3/Call;)V
    HSPLokhttp3/Handshake$Companion$handshake$1;-><init>(Ljava/util/List;)V
    HSPLokhttp3/Handshake$peerCertificates$2;-><init>(Lkotlin/jvm/functions/Function0;)V
    HSPLokhttp3/Handshake;-><init>(Lokhttp3/TlsVersion;Lokhttp3/CipherSuite;Ljava/util/List;Lkotlin/jvm/functions/Function0;)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            TlsVersion.TLS_1_3,
          ) // v1.2 on OpenJDK 8.
        val request1 = server.takeRequest()
        assertThat(tlsVersions).contains(request1.handshake?.tlsVersion)
        val request2 = server.takeRequest()
        assertThat(tlsVersions).contains(request2.handshake?.tlsVersion)
      }
    
      /**
       * Verify that we don't retry connections on certificate verification errors.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

            .build()
        val request2 = Request.Builder().url(server.url("/")).build()
        val response2 = client.newCall(request2).execute()
        assertThat(response1.handshake).isNotSameAs(
          response2.handshake,
        )
        response2.body.close()
      }
    
      @Test
      fun unmatchingPinnedCertificate() {
        enableTls()
        server.enqueue(MockResponse())
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    			ts.Config.WriteTimeout = timeout
    			t.Logf("Server.Config.WriteTimeout = %v", timeout)
    		})
    
    		// The server's WriteTimeout parameter also applies to reads during the TLS
    		// handshake. The client makes the last write during the handshake, and if
    		// the server happens to time out during the read of that write, the client
    		// may think that the connection was accepted even though the server thinks
    		// it timed out.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"hand":                                 "\u270b",
    	"hand_over_mouth":                      "\U0001f92d",
    	"handbag":                              "\U0001f45c",
    	"handball_person":                      "\U0001f93e",
    	"handshake":                            "\U0001f91d",
    	"hankey":                               "\U0001f4a9",
    	"hash":                                 "#\ufe0f\u20e3",
    	"hatched_chick":                        "\U0001f425",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  9. src/net/http/server.go

    }
    
    func (srv *Server) initialReadLimitSize() int64 {
    	return int64(srv.maxHeaderBytes()) + 4096 // bufio slop
    }
    
    // tlsHandshakeTimeout returns the time limit permitted for the TLS
    // handshake, or zero for unlimited.
    //
    // It returns the minimum of any positive ReadHeaderTimeout,
    // ReadTimeout, or WriteTimeout.
    func (srv *Server) tlsHandshakeTimeout() time.Duration {
    	var ret time.Duration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    connections to this port should be secured using TLS. enum: - DISABLE - SIMPLE - MUTUAL - ISTIO_MUTUAL type: string privateKey: description: REQUIRED if mode is `MUTUAL`. type: string sni: description: SNI string to present to the server during TLS handshake. type: string subjectAltNames: description: A list of alternate names to verify the subject identity in the certificate. items: type: string type: array type: object type: object type: array proxyProtocol: description: The upstream PROXY protocol...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top