Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 175 for significantly_ (0.26 sec)

  1. src/syscall/fs_wasip1.go

    // could append the result to an output buffer that the functions in this
    // file can manage to have allocated on the stack (e.g. initializing to a
    // fixed capacity). Since it will significantly increase code complexity,
    // we prefer to optimize for readability and maintainability at this time.
    func joinPath(dir, file string) string {
    	buf := make([]byte, 0, len(dir)+len(file)+1)
    	if isAbs(dir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    	"queueLengthLimit": "`queueLengthLimit`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"queueLengthLimit": "`queueLengthLimit`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       then as many exception-testing methods as there are exceptions the method can throw.
     *       Sometimes there are multiple tests per JSR166 method when the different "normal" behaviors
     *       differ significantly. And sometimes testcases cover multiple methods when they cannot be
     *       tested in isolation.
     *   <li>The documentation style for testcases is to provide as javadoc a simple sentence or two
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
       * higher value than you need can waste space and time, and a significantly lower value can lead
       * to thread contention. But overestimates and underestimates within an order of magnitude do not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. cmd/utils.go

    			}
    			defer RemoveAll(dirPath)
    			return ioutilx.ReadFile(fn)
    		}
    	case madmin.ProfilerCPUIO:
    		// at 10k or more goroutines fgprof is likely to become
    		// unable to maintain its sampling rate and to significantly
    		// degrade the performance of your application
    		// https://github.com/felixge/fgprof#fgprof
    		if n := runtime.NumGoroutine(); n > 10000 && !globalIsCICD {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  7. src/go/scanner/scanner.go

    // It must only be called when s.ch is known to be a valid letter.
    //
    // Be careful when making changes to this function: it is optimized and affects
    // scanning performance significantly.
    func (s *Scanner) scanIdentifier() string {
    	offs := s.offset
    
    	// Optimize for the common case of an ASCII identifier.
    	//
    	// Ranging over s.src[s.rdOffset:] lets us avoid some bounds checks, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. src/encoding/gob/type.go

    // to get the current version of the map. Writers make a full copy of
    // the map and atomically update the pointer to point to the new map.
    // Under heavy read contention, this is significantly faster than a map
    // protected by a mutex.
    var typeInfoMap atomic.Value
    
    // typeInfoMapInit is used instead of typeInfoMap during init time,
    // as types are registered sequentially during init and we can save
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    === Significant build performance drop on Windows for huge multi-projects
    
    Another side effect of the snapshotting of individual class files, only affecting Windows systems, is that the performance can significantly drop when processing a very large amount of class files on the compile classpath.
    This only concerns very large multi-projects where a lot of classes are present on the classpath by using many `api` dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    			options = append(options, clientv3.WithRev(withRev))
    		}
    
    		// avoid small allocations for the result slice, since this can be called in many
    		// different contexts and we don't know how significantly the result will be filtered
    		if opts.Predicate.Empty() {
    			growSlice(v, len(getResp.Kvs))
    		} else {
    			growSlice(v, 2048, len(getResp.Kvs))
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top