Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for w_scale (0.11 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		nil, // No need for typer, since only using validation
    		namespaceScoped,
    		kind,
    		schemaValidator,
    		nil, // No status schema validator
    		sts,
    		nil, // No need for status
    		nil, // No need for scale
    		nil, // No need for selectable fields
    	)
    
    	return func(new, old *unstructured.Unstructured) {
    		_ = strategy.ValidateUpdate(context.TODO(), new, old)
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	})
    }
    
    type Point struct {
    	x, y int
    }
    
    // This will be index 0.
    func (p Point) AnotherMethod(scale int) int {
    	return -1
    }
    
    // This will be index 1.
    func (p Point) Dist(scale int) int {
    	//println("Point.Dist", p.x, p.y, scale)
    	return p.x*p.x*scale + p.y*p.y*scale
    }
    
    // This will be index 2.
    func (p Point) GCMethod(k int) int {
    	runtime.GC()
    	return k + p.x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    			ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    			return
    		}
    
    		if disp8, ok := toDisp8(v, p, ab); ok {
    			ab.Put1(byte(1<<6 | reg[base]<<0 | r<<3))
    			ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    			ab.Put1(disp8)
    			return
    		}
    
    		ab.Put1(byte(2<<6 | reg[base]<<0 | r<<3))
    		ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    		goto putrelv
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      { auto _e = scale(); if (_e) { _o->scale.resize(_e->size()); for (::flatbuffers::uoffset_t _i = 0; _i < _e->size(); _i++) { _o->scale[_i] = _e->Get(_i); } } else { _o->scale.resize(0); } }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top