Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getHostnameVerifier (0.47 sec)

  1. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

            SystemDefaultCredentialsProvider credentialsProvider = new SystemDefaultCredentialsProvider();
            configureSslSocketConnectionFactory(builder, httpSettings.getSslContextFactory(), httpSettings.getHostnameVerifier());
            configureAuthSchemeRegistry(builder);
            configureCredentials(builder, credentialsProvider, httpSettings.getAuthenticationSettings());
            configureProxy(builder, credentialsProvider, httpSettings);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            HostnameVerifier hv = null;
            SSLSocketFactory ssf = null;
            if ( this.connection instanceof HttpsURLConnection ) {
                hv = ( (HttpsURLConnection) this.connection ).getHostnameVerifier();
                ssf = ( (HttpsURLConnection) this.connection ).getSSLSocketFactory();
            }
    
            this.connection = (HttpURLConnection) this.connection.getURL().openConnection();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
Back to top