Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for w_scale (0.21 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)
Back to top