Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for versionPriority (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	rdm.lock.Lock()
    	defer rdm.lock.Unlock()
    
    	key := groupVersionKey{
    		GroupVersion: gv,
    		source:       source,
    	}
    	rdm.versionPriorities[key] = priorityInfo{
    		GroupPriorityMinimum: groupPriorityMinimum,
    		VersionPriority:      versionPriority,
    	}
    	rdm.cache.Store(nil)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	// default converting behavior.
    	converter *conversion.Converter
    
    	// versionPriority is a map of groups to ordered lists of versions for those groups indicating the
    	// default priorities of these versions as registered in the scheme
    	versionPriority map[string][]string
    
    	// observedVersions keeps track of the order we've seen versions during type registration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/aggregator.go

    		Spec: v1.APIServiceSpec{
    			Group:                gv.Group,
    			Version:              gv.Version,
    			GroupPriorityMinimum: apiServicePriority.Group,
    			VersionPriority:      apiServicePriority.Version,
    		},
    	}
    }
    
    // makeAPIServiceAvailableHealthCheck returns a healthz check that returns healthy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top