Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for specsByGVandName (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/controller.go

    		Version: versionName,
    	}
    
    	_, ok := c.specsByGVandName[gv]
    	reason := "update"
    	if !ok {
    		reason = "add"
    		c.specsByGVandName[gv] = map[string]*spec3.OpenAPI{}
    	}
    
    	oldSpec, ok := c.specsByGVandName[gv][name]
    	if ok {
    		if reflect.DeepEqual(oldSpec, v3) {
    			// no changes to CRD
    			return nil
    		}
    	}
    	c.specsByGVandName[gv][name] = v3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top