Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 378 for mechanisms (0.31 sec)

  1. src/main/java/jcifs/spnego/NegTokenInit.java

        }
    
    
        public ASN1ObjectIdentifier[] getMechanisms () {
            return this.mechanisms;
        }
    
    
        public void setMechanisms ( ASN1ObjectIdentifier[] mechanisms ) {
            this.mechanisms = mechanisms;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#toString()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

    /**
     * These test cases document the current behavior when dependency constraints are combined
     * with other dependency management mechanisms. They do not represent recommended use cases.
     * If dependency constraints and component metadata rules are used, using other mechanisms
     * should not be required.
     */
    class DependencyConstraintsAndResolutionStrategiesIntegrationTest extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/InterruptibleRunnable.java

     *
     * In contrast to {@link java.util.concurrent.Future#cancel(boolean)}, the delegate Runnable is always called, even if an interrupt was received before this runnable was started.
     * This can be used to implement guaranteed delivery mechanisms, where proper interrupt handling is up to the delegate.
     */
    public final class InterruptibleRunnable implements Runnable {
        private final Lock stateLock = new ReentrantLock();
        private final Runnable delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/net/smtp/auth.go

    	TLS  bool     // using TLS, with valid certificate for Name
    	Auth []string // advertised authentication mechanisms
    }
    
    type plainAuth struct {
    	identity, username, password string
    	host                         string
    }
    
    // PlainAuth returns an [Auth] that implements the PLAIN authentication
    // mechanism as defined in RFC 4616. The returned Auth uses the given
    // username and password to authenticate to host and act as identity.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. docs/kms/IAM.md

    ## FAQ
    
    > Why is this change needed?
    
    Before, there were two separate mechanisms - S3 objects got encrypted using a KMS,
    if present, and the IAM / configuration data got encrypted with the root credentials.
    Now, MinIO encrypts IAM / configuration and S3 objects with a KMS, if present. This
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pilot/pkg/features/security.go

    	// TODO: Move this to proper API.
    	trustedGatewayCIDR = env.Register(
    		"TRUSTED_GATEWAY_CIDR",
    		"",
    		"If set, any connections from gateway to Istiod with this CIDR range are treated as trusted for using authentication mechanisms like XFCC."+
    			" This can only be used when the network where Istiod and the authenticating gateways are running in a trusted/secure network",
    	)
    
    	TrustedGatewayCIDR = func() []string {
    		cidr := trustedGatewayCIDR.Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 13 03:50:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    There are many mechanisms available.
    By leveraging these mechanisms, you can make your Gradle builds more flexible and adaptable to different environments and requirements.
    
    == Available mechanisms
    
    Gradle provides multiple mechanisms for configuring the behavior of Gradle itself and specific projects:
    
    [cols="~,~,~"]
    |===
    |Mechanism |Information |Example
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/plugin/plugin.go

    //     files that blank-import the desired set of plugins and then
    //     compile a static executable in the usual way.
    //
    // For these reasons, many users decide that traditional interprocess
    // communication (IPC) mechanisms such as sockets, pipes, remote
    // procedure call (RPC), shared memory mappings, or file system
    // operations may be more suitable despite the performance overheads.
    package plugin
    
    // Plugin is a loaded Go plugin.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt

    /**
     * A certificate chain cleaner that uses a set of trusted root certificates to build the trusted
     * chain. This class duplicates the clean chain building performed during the TLS handshake. We
     * prefer other mechanisms where they exist, such as with
     * [okhttp3.internal.platform.AndroidPlatform.AndroidCertificateChainCleaner].
     *
     * This class includes code from [Conscrypt's][Conscrypt] [TrustManagerImpl] and
     * [TrustedCertificateIndex].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. README.md

    ----
    
    Kubernetes, also known as K8s, is an open source system for managing [containerized applications]
    across multiple hosts. It provides basic mechanisms for the deployment, maintenance,
    and scaling of applications.
    
    Kubernetes builds upon a decade and a half of experience at Google running
    production workloads at scale using a system called [Borg],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top