Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for h_scale (0.09 sec)

  1. src/cmd/asm/internal/asm/asm.go

    func (p *Parser) validSymbol(pseudo string, addr *obj.Addr, offsetOk bool) bool {
    	if addr.Sym == nil || addr.Name != obj.NAME_EXTERN && addr.Name != obj.NAME_STATIC || addr.Scale != 0 || addr.Reg != 0 {
    		p.errorf("%s symbol %q must be a symbol(SB)", pseudo, symbolName(addr))
    		return false
    	}
    	if !offsetOk && addr.Offset != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    			//  get below a certain floor value, since we want the server to
    			//  drain the active watch requests as soon as possible.
    			//  For now, it's hard coded to 200, and it is subject to change
    			//  based on the result from the scale testing.
    			if qps < 200 {
    				qps = 200
    			}
    
    			ctx, cancel := context.WithTimeout(context.Background(), grace)
    			// We don't expect more than one token to be consumed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one.go

    					}
    
    					// MaxExtenderPriority may diverge from the max priority used in the scheduler and defined by MaxNodeScore,
    					// therefore we need to scale the score returned by extenders to the score range used by the scheduler.
    					finalscore := score * weight * (framework.MaxNodeScore / extenderv1.MaxExtenderPriority)
    
    					if allNodeExtendersScores[nodename] == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top