Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 236 for keystore (0.35 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            } else if (protocol == 'https') {
                // https://issues.apache.org/jira/browse/HTTPCLIENT-1478
                def keyStore = TestKeyStore.init(temporaryFolder.file('ssl-keystore'))
                keyStore.enableSslWithServerCert(server)
                keyStore.configureServerCert(executer)
                server.expectSslHandshakeBlocking()
            } else {
                assert false: "Unsupported protocol: ${protocol}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

                connector = null
            }
    
            server?.stop()
        }
    
        void reset() {
            securityHandlerWrapper.reset()
        }
    
        void enableSsl(
            String keyStore,
            String keyPassword,
            String trustStore = null,
            String trustPassword = null,
            Action<SslContextFactory.Server> configureServer = Actions.doNothing()
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. docs/kms/README.md

    |:---------------------------------------------------------------------------------------------|:------------------------------------------------------------------|
    | [Hashicorp Vault](https://github.com/minio/kes/wiki/Hashicorp-Vault-Keystore)                | Local KMS. MinIO and KMS on-prem (**Recommended**)                |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpsServer.java

    package org.gradle.test.fixtures.server.http;
    
    import com.sun.net.httpserver.HttpsConfigurator;
    import com.sun.net.httpserver.HttpsParameters;
    import com.sun.net.httpserver.HttpsServer;
    import org.gradle.test.fixtures.keystore.TestKeyStore;
    
    import javax.net.ssl.SSLContext;
    import javax.net.ssl.SSLEngine;
    import javax.net.ssl.SSLParameters;
    import java.io.IOException;
    import java.net.InetSocketAddress;
    import java.util.Arrays;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

    import com.squareup.moshi.Moshi
    import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory
    import java.io.IOException
    import java.net.InetAddress
    import java.net.UnknownHostException
    import java.security.KeyStore
    import java.security.SecureRandom
    import java.security.Security
    import java.security.cert.Certificate
    import java.security.cert.CertificateException
    import java.security.cert.X509Certificate
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

             *
             * Hundreds of Gradle's integration tests use a local web-server to test logic that relies upon
             * this behavior.
             *
             * Changing all of those tests so that they use a KeyStore would have been impractical.
             * Instead, the test fixture was updated to use 127.0.0.1 when making HTTP requests.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    The following JVM system properties are immutable:
    
    * `file.encoding`
    * `user.language`
    * `user.country`
    * `user.variant`
    * `java.io.tmpdir`
    * `javax.net.ssl.keyStore`
    * `javax.net.ssl.keyStorePassword`
    * `javax.net.ssl.keyStoreType`
    * `javax.net.ssl.trustStore`
    * `javax.net.ssl.trustStorePassword`
    * `javax.net.ssl.trustStoreType`
    * `com.sun.management.jmxremote`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

             *
             * Hundreds of Gradle's integration tests use a local web-server to test logic that relies upon
             * this behavior.
             *
             * Changing all of those tests so that they use a KeyStore would have been impractical.
             * Instead, the test fixture was updated to use 127.0.0.1 when making HTTP requests.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * ```java
         * TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(
         * TrustManagerFactory.getDefaultAlgorithm());
         * trustManagerFactory.init((KeyStore) null);
         * TrustManager[] trustManagers = trustManagerFactory.getTrustManagers();
         * if (trustManagers.length != 1 || !(trustManagers[0] instanceof X509TrustManager)) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

    import java.net.SocketAddress
    import java.net.SocketException
    import java.net.SocketTimeoutException
    import java.net.URI
    import java.net.URLConnection
    import java.net.UnknownHostException
    import java.security.KeyStore
    import java.security.cert.CertificateException
    import java.security.cert.X509Certificate
    import java.time.Duration
    import java.util.Arrays
    import java.util.EnumSet
    import java.util.Locale
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top