Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for trustStore (0.19 sec)

  1. testing/internal-integ-testing/src/main/resources/test-key-store/trustStore

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/resources/test-key-store/trustStore-adoptopenjdk-8.bin

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

         we need to merge JDK's cacerts into the custom truststore via:
    
         keytool -importkeystore -srckeystore <JDK cacerts file location> -destkeystore <resource>/test-key-store/trustStore
    
         Note:
          1. Use JDK8 keytool command to make sure compatibility.
          2. Default password for JDK cacerts is "changeit".
    
         The current trustStore-adoptopenjdk-8 is created from AdoptOpenJDK8 cacerts.
         */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

            sslContextFactory.setKeyStorePath(keyStore)
            sslContextFactory.setKeyStorePassword(keyPassword)
            if (trustStore) {
                sslContextFactory.needClientAuth = true
                sslContextFactory.setTrustStorePath(trustStore)
            }
            if (trustPassword) {
                sslContextFactory.setTrustStorePassword(trustPassword)
            }
            configureServer.execute(sslContextFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    * `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`
    
    The following JVM attributes controlled by startup arguments are also immutable:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top