Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Prioritize (0.15 sec)

  1. pkg/kubelet/eviction/helpers.go

    		if !p1Found || !p2Found {
    			// prioritize evicting the pod for which no stats were found
    			return cmpBool(!p1Found, !p2Found)
    		}
    
    		p1Process := processUsage(p1Stats.ProcessStats)
    		p2Process := processUsage(p2Stats.ProcessStats)
    		// prioritize evicting the pod which has the larger consumption of process
    		return int(p2Process - p1Process)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /**
     * For mobile devices, we show navigation at bottom of page.
     *
     * This is the simplest solution to this issue.
     */
    @media not screen and (min-width: 64rem) {
    	/* Repeat the class twice to prioritize our mobile classes! */
    
    	.content.content {
    		/* Make the height equal to
               the real height of content */
    		overflow: visible;
    	}
    
    	.main-content {
    		/* Main content show first */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    		// Note that we do this phase after startRegs is set above, so that
    		// we get the right behavior for a block which branches to itself.
    		for _, e := range b.Succs {
    			succ := e.b
    			// TODO: prioritize likely successor?
    			for _, x := range s.startRegs[succ.ID] {
    				desired.add(x.v.ID, x.r)
    			}
    			// Process phi ops in succ.
    			pidx := e.i
    			for _, v := range succ.Values {
    				if v.Op != OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            'GPG'               | 'gpg'     | null
            'ASCII'             | 'keys'    | null
            'ASCII with header' | 'keys'    | 'some comment showing we can have arbitrary text'
        }
    
        def "by default, prioritizes gpg format over ascii-armored when #hint"() {
            // key will not be published on the server fixture but available locally
            def keyring = newKeyRing()
            def pkId = toHexString(keyring.publicKey.fingerprint)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	if gp._panic != nil {
    		// Panics are always stack allocated.
    		state.putPtr(uintptr(unsafe.Pointer(gp._panic)), false)
    	}
    
    	// Find and scan all reachable stack objects.
    	//
    	// The state's pointer queue prioritizes precise pointers over
    	// conservative pointers so that we'll prefer scanning stack
    	// objects precisely.
    	state.buildIndex()
    	for {
    		p, conservative := state.getPtr()
    		if p == 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top