Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 489 for mechanisms (0.52 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. src/main/java/jcifs/smb/SSPContext.java

         */
        void dispose () throws CIFSException;
    
    
        /**
         * @param mechanism
         * @return whether the specified mechanism is supported
         */
        boolean isSupported ( ASN1ObjectIdentifier mechanism );
    
    
        /**
         * @param selectedMech
         * @return whether the specified mechanism is preferred
         */
        boolean isPreferredMech ( ASN1ObjectIdentifier selectedMech );
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  4. releasenotes/notes/fix-concurrency.yaml

      content: |
        Previously, the proxy `concurrency` setting, which configures how many worker threads the proxy runs,
        was inconsistently configured between sidecars and different gateway installation mechanisms.
        This often led to gateways running with concurrency based on the number of physical cores on the host machine,
        despite having CPU limits, leading to decreased performance and increased resource usage.
        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/controller/certificates/cleaner/cleaner.go

    	deniedExpiration   = 1 * time.Hour
    	pendingExpiration  = 24 * time.Hour
    )
    
    // CSRCleanerController is a controller that garbage collects old certificate
    // signing requests (CSRs). Since there are mechanisms that automatically
    // create CSRs, and mechanisms that automatically approve CSRs, in order to
    // prevent a build up of CSRs over time, it is necessary to GC them. CSRs will
    // be removed if they meet one of the following criteria: the CSR is Approved
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top