Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for keystores (2.05 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

        def setup() {
            toolingApi.requireIsolatedToolingApi()
            sync.start()
            settingsFile.touch()
        }
    
        def cleanup() {
            toolingApi.close()
        }
    
        def "tooling api restores standard streams at end of the build"() {
            given:
            def outInstance = System.out
            def errInstance = System.err
            def inInstance = System.in
    
            buildFile << """
                task hey
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. releasenotes/notes/sds-cacert-precedence.yaml

    releaseNotes:
    - |
      **Fixed** an issue causing a Secret named `<secret>-cacert` to have lower precedence than a Secret named `<secret>` for Gateway Mutual TLS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 05 10:55:59 UTC 2021
    - 356 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

            expect: 'convention mapping is ignored'
            configurationCacheRun 'myTask'
    
            and: 'convention mapping is ignored just the same'
            configurationCacheRun 'myTask'
        }
    
        def "restores convention mapped task input property explicitly set to null"() {
            given:
            withConventionMappingForPropertyOfType String, '"42"'
            buildFile << '''
                tasks.named("ok") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/c/experimental/ops/io_ops.cc

    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/platform/errors.h"
    
    using tensorflow::tracing::MaybeSetOpName;
    
    namespace tensorflow {
    namespace ops {
    
    // Op: RestoreV2()
    // Summary: Restores tensors from a V2 checkpoint.
    //
    // Description:
    //   For backward compatibility with the V1 format, this Op currently allows
    //   restoring from a V1 checkpoint as well:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/StandardOutputCapture.java

        /**
         * Starts redirection of System.out and System.err to the Gradle logging system.
         *
         * @return this
         */
        StandardOutputCapture start();
    
        /**
         * Restores System.out and System.err to the values they had before {@link #start()} has been called.
         *
         * @return this
         */
        StandardOutputCapture stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonJvmOptions.java

    import java.util.Set;
    
    import static com.google.common.collect.ImmutableList.toImmutableList;
    
    public class DaemonJvmOptions extends JvmOptions {
    
        public static final String SSL_KEYSTORE_KEY = "javax.net.ssl.keyStore";
        public static final String SSL_KEYSTOREPASSWORD_KEY = "javax.net.ssl.keyStorePassword";
        public static final String SSL_KEYSTORETYPE_KEY = "javax.net.ssl.keyStoreType";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                totalProblemsCount = 1
                problemsWithStackTraceCount = 0
            }
        }
    
        def "restores task fields whose value is an object graph with cycles"() {
            buildFile << """
                class SomeBean {
                    String value
                    SomeBean parent
                    SomeBean child
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top