Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for adaptive (0.51 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProducerGuard.java

     * This is <b>not</b> a cache. The factory should take care of caching wherever it makes sense.
     *
     * <p>
     * The concurrency level and memory usage depend on the implementation, see {@link #adaptive()}, {@link #striped()} and {@link #serial()} for details.
     * </p>
     *
     * @param <T> the type of key to lock on
     */
    public abstract class ProducerGuard<T> {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:31 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementGlobalScopeServices.java

            return new FileConnectorFactory();
        }
    
        @Provides
        ProducerGuard<ExternalResourceName> createProducerAccess() {
            return ProducerGuard.adaptive();
        }
    
        @Provides
        TypeAnnotationHandler createCacheableTransformAnnotationHandler() {
            return new CacheableTransformTypeAnnotationHandler();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. fastapi/openapi/docs.py

        """
        html = f"""
        <!DOCTYPE html>
        <html>
        <head>
        <title>{title}</title>
        <!-- needed for adaptive design -->
        <meta charset="utf-8"/>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        """
        if with_google_fonts:
            html += """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/crypto/rsa/rsa.go

    	return encrypt(pub, em)
    }
    
    // ErrDecryption represents a failure to decrypt a message.
    // It is deliberately vague to avoid adaptive attacks.
    var ErrDecryption = errors.New("crypto/rsa: decryption error")
    
    // ErrVerification represents a failure to verify a signature.
    // It is deliberately vague to avoid adaptive attacks.
    var ErrVerification = errors.New("crypto/rsa: verification error")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. pkg/scheduler/scheduler.go

    	return func(o *schedulerOptions) {
    		o.parallelism = threads
    	}
    }
    
    // WithPercentageOfNodesToScore sets percentageOfNodesToScore for Scheduler.
    // The default value of 0 will use an adaptive percentage: 50 - (num of nodes)/125.
    func WithPercentageOfNodesToScore(percentageOfNodesToScore *int32) Option {
    	return func(o *schedulerOptions) {
    		if percentageOfNodesToScore != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// post-quantum key exchange. To disable it, set CurvePreferences explicitly
    	// or use the GODEBUG=tlskyber=0 environment variable.
    	CurvePreferences []CurveID
    
    	// DynamicRecordSizingDisabled disables adaptive sizing of TLS records.
    	// When true, the largest possible TLS record size is always used. When
    	// false, the size of TLS records may be adjusted in an attempt to
    	// improve latency.
    	DynamicRecordSizingDisabled bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tracing.go

    		}
    
    		uri, err := url.JoinPath(hostname, "api/v2/samplingConfiguration")
    		if err != nil {
    			return nil, fmt.Errorf("could not parse dynatrace adaptative sampling endpoint %v", err)
    		}
    
    		dsc.HttpService = &core.HttpService{
    			HttpUri: &core.HttpUri{
    				Uri: uri,
    				HttpUpstreamType: &core.HttpUri_Cluster{
    					Cluster: cluster,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    sup.footnoteref {
    	font-size: 0.875em;
    	position: static;
    	vertical-align: super;
    }
    
    sup.footnote a,
    sup.footnoteref a {
    	text-decoration: none;
    }
    
    sup.footnote a:active,
    sup.footnoteref a:active {
    	text-decoration: underline;
    }
    
    #footnotes {
    	padding-top: 0.75em;
    	padding-bottom: 0.75em;
    	margin-bottom: 0.625em;
    }
    
    #footnotes hr {
    	width: 20%;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types.go

    // the set of authorizers the server is configured with and any errors experienced during evaluation.
    // Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission,
    // even if that list is incomplete.
    type SubjectRulesReviewStatus struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Modifications to your build that would impact the resolved set of dependencies will cause it to fail.
    This makes sure that changes, either in published dependencies or build definitions, do not alter resolution without adapting the lock state.
    
    [NOTE]
    ====
    Dependency locking makes sense only with <<dynamic_versions.adoc#sub:declaring_dependency_with_dynamic_version,dynamic versions>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top