Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DestMatcher (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    				return nil, false, err
    			}
    		}
    
    		return inPod, false, nil
    	}
    }
    
    func (p *testPatcher) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
    	p.t.Fatal("Unexpected call to testPatcher.Get")
    	return nil, errors.New("Unexpected call to testPatcher.Get")
    }
    
    type testNamer struct {
    	namespace string
    	name      string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    			updateValidation: rest.AdmissionToValidateObjectUpdateFunc(admit, staticUpdateAttributes, scope),
    			admissionCheck:   mutatingAdmission,
    
    			codec: codec,
    
    			options: options,
    
    			restPatcher: r,
    			name:        name,
    			patchType:   patchType,
    			patchBytes:  patchBytes,
    			userAgent:   req.UserAgent(),
    		}
    
    		result, wasCreated, err := p.patchResource(ctx, scope)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top