Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DestMatcher (0.25 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)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    }
    
    func gvk(group, version, kind string) schema.GroupVersionKind {
    	return schema.GroupVersionKind{Group: group, Version: version, Kind: kind}
    }
    
    func TestMatcher(t *testing.T) {
    	a := &Matcher{namespaceMatcher: &namespace.Matcher{}, objectMatcher: &object.Matcher{}}
    
    	allScopes := v1.AllScopes
    	exactMatch := v1.Exact
    	equivalentMatch := v1.Equivalent
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top