Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for KEYSTORE (0.26 sec)

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

            "javax.net.ssl.trustStoreProvider",
            "javax.net.ssl.trustStorePassword",
            "ssl.KeyManagerFactory.algorithm",
            "javax.net.ssl.keyStoreType",
            "javax.net.ssl.keyStore",
            "javax.net.ssl.keyStoreProvider",
            "javax.net.ssl.keyStorePassword",
            "java.home"
        );
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/FakeKeyStore.java

            public static String name = "FakeProvider";
            public static String algorithm = "FAKEKS";
    
            Provider() {
                super(name, 1.0, name);
                putService(new Service(this, "KeyStore", algorithm, FakeKeyStore.class.getCanonicalName(), null, null));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:secrets:configuring_encryption_key]]
    === Providing an encryption key via `GRADLE_ENCRYPTION_KEY` environment variable
    
    By default, Gradle automatically generates and manages the encryption key as a Java keystore stored under the `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>` directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top