Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for adaptive (0.23 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/OncePerBuildInvocationVcsVersionWorkingDirResolver.java

     */
    @ThreadSafe
    public class OncePerBuildInvocationVcsVersionWorkingDirResolver implements VcsVersionWorkingDirResolver {
        private final ProducerGuard<String> perRepoGuard = ProducerGuard.adaptive();
        private final VcsVersionSelectionCache inMemoryCache;
        private final VcsVersionWorkingDirResolver delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DefaultDecompressionCoordinator.java

        private static final String EXPANSION_CACHE_NAME = "Compressed Files Expansion Cache";
        private final PersistentCache cache;
        private final ProducerGuard<File> guard = ProducerGuard.adaptive();
    
        public DefaultDecompressionCoordinator(ScopedCacheBuilderFactory cacheBuilderFactory) {
            this.cache = cacheBuilderFactory.createCacheBuilder(EXPANSION_CACHE_KEY)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/CrossBuildCachingKeyService.java

        private final IndexedCache<Long, CacheEntry<List<Fingerprint>>> longIdToFingerprint;
        private final ProducerGuard<Fingerprint> fingerPrintguard = ProducerGuard.adaptive();
        private final ProducerGuard<Long> longIdGuard = ProducerGuard.adaptive();
    
        public CrossBuildCachingKeyService(
            GlobalScopedCacheBuilderFactory cacheBuilderFactory,
            InMemoryCacheDecoratorFactory decoratorFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:44:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

      %ch1 = "tfrt_fallback_async.print_tensor"(%result, %ch0) : (!tfrt_fallback.tf_tensor, !tfrt.chain) -> !tfrt.chain
    
      tfrt.return %ch1 : !tfrt.chain
    }
    
    // This test is for testing support for Adaptive Batch Scheduler, and it is
    // triggered by num_batch_threads<=0
    // CHECK-LABEL: --- Running 'batch_function_fallback_zero_batch_thread_test'
    func.func @batch_function_fallback_zero_batch_thread_test() -> !tfrt.chain {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/resources/fess_config.properties

    job.max.crawler.processes=0
    job.default.script=groovy
    
    processors=0
    java.command.path=java
    python.command.path=python
    path.encoding=UTF-8
    use.own.tmp.dir=true
    max.log.output.length=4000
    adaptive.load.control=50
    supported.uploaded.js.extentions=js
    supported.uploaded.css.extentions=css
    supported.uploaded.media.extentions=jpg,jpeg,gif,png,swf
    supported.uploaded.files=license.properties
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. 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)
  10. pkg/scheduler/apis/config/types.go

     */
    const (
    	// DefaultPercentageOfNodesToScore defines the percentage of nodes of all nodes
    	// that once found feasible, the scheduler stops looking for more nodes.
    	// A value of 0 means adaptive, meaning the scheduler figures out a proper default.
    	DefaultPercentageOfNodesToScore = 0
    
    	// MaxCustomPriorityScore is the max score UtilizationShapePoint expects.
    	MaxCustomPriorityScore int64 = 10
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top