Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newTree (0.1 sec)

  1. pkg/apis/core/validation/validation.go

    		var eqs = apiequality.Semantic.Copy()
    		err := eqs.AddFunc(
    			func(newReq, oldReq core.NodeSelectorRequirement) bool {
    				// allow newReq to change to a GA key
    				if oldReq.Key != newReq.Key && betaToGALabel[oldReq.Key] == newReq.Key {
    					oldReq.Key = newReq.Key // +k8s:verify-mutation:reason=clone
    				}
    				return apiequality.Semantic.DeepEqual(newReq, oldReq)
    			},
    		)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	// state via the optional req.GetBody, do that.
    	if req.GetBody != nil {
    		body, err := req.GetBody()
    		if err != nil {
    			return nil, err
    		}
    		newReq := *req
    		newReq.Body = body
    		return &newReq, nil
    	}
    
    	// The Request.Body can't reset back to the beginning, but we
    	// don't seem to have started to read from it yet, so reuse
    	// the request directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top