Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 175 for significantly_ (0.38 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// of queues and deal a hand of the size specified here.  The
    	// request is put into one of the shortest queues in that hand.
    	// `handSize` must be no larger than `queues`, and should be
    	// significantly smaller (so that a few heavy flows do not
    	// saturate most of the queues).  See the user-facing
    	// documentation for more extensive guidance on setting this
    	// field.  This field has a default value of 8.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	//
    	// These limits may increase over time, but are currently at
    	// most 48 bits except on s390x. On all architectures, Linux
    	// starts placing mmap'd regions at addresses that are
    	// significantly below 48 bits, so even if it's possible to
    	// exceed Go's 48 bit limit, it's extremely unlikely in
    	// practice.
    	//
    	// On 32-bit platforms, we accept the full 32-bit address
    	// space because doing so is cheap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    	// that could be returned to the OS, but is being retained by
    	// the runtime so it can grow the heap without requesting more
    	// memory from the OS. If this difference is significantly
    	// larger than the heap size, it indicates there was a recent
    	// transient spike in live heap size.
    	HeapIdle uint64
    
    	// HeapInuse is bytes in in-use spans.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashMap.java

     * which is optimal, and <i>not</i> the size of the internal hashtable, which could be much larger
     * than {@code size()}. Furthermore, this structure places significantly reduced load on the garbage
     * collector by only using a constant number of internal objects.
     *
     * <p>If there are no removals, then iteration order for the {@link #entrySet}, {@link #keySet}, and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. configure.py

            ' binary GPU code, or as "sm_xy" to only include the binary '
            'code.\nPlease note that each additional compute capability '
            'significantly increases your build time and binary size, and that '
            'TensorFlow only supports compute capabilities >= 3.5 [Default is: '
            '%s]: ' % default_cuda_compute_capabilities)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/strings/strings.go

    		end   int
    	}
    	spans := make([]span, 0, 32)
    
    	// Find the field start and end indices.
    	// Doing this in a separate pass (rather than slicing the string s
    	// and collecting the result substrings right away) is significantly
    	// more efficient, possibly due to cache effects.
    	start := -1 // valid span start if >= 0
    	for end, rune := range s {
    		if f(rune) {
    			if start >= 0 {
    				spans = append(spans, span{start, end})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/build.go

    		in which case it is "atomic".
    		The values:
    		set: bool: does this statement run?
    		count: int: how many times does this statement run?
    		atomic: int: count, but correct in multithreaded tests;
    			significantly more expensive.
    		Sets -cover.
    	-coverpkg pattern1,pattern2,pattern3
    		For a build that targets package 'main' (e.g. building a Go
    		executable), apply coverage analysis to each package matching
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    Source sets are a powerful concept that tie together several aspects of compilation:
    
     * the source files and where they're located
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    			case 64:
    				pc = int(decoder[pc+2])
    			}
    
    		case xCondPrefix:
    			// Conditional branch based on presence or absence of prefixes.
    			// The conflict cases here are completely undocumented and
    			// differ significantly between GNU libopcodes and Intel xed.
    			// I have not written assembly code to divine what various CPUs
    			// do, but it wouldn't surprise me if they are not consistent either.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // Each client needs to be demanding enough to use more than its fair share,
    // or overall care needs to be taken about timing so that scheduling details
    // do not cause any client to actually request a significantly smaller share
    // than it theoretically should.
    // expectFair indicate whether the QueueSet is expected to be
    // fair in the respective halves of a split scenario;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top