Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for resource_prefix (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    func RecordListCacheMetrics(resourcePrefix, indexName string, numFetched, numReturned int) {
    	listCacheCount.WithLabelValues(resourcePrefix, indexName).Inc()
    	listCacheNumFetched.WithLabelValues(resourcePrefix, indexName).Add(float64(numFetched))
    	listCacheNumReturned.WithLabelValues(resourcePrefix).Add(float64(numReturned))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.23.md

      - *apiserver_cache_list_fetched_objects_total*: Counter of objects read from watch cache in the course of serving a LIST request, broken down by resource_prefix and index_name
      - *apiserver_cache_list_evaluated_objects_total*: Counter of objects tested in the course of serving a LIST request from watch cache, broken down by resource_prefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/TransportableActionExecutionSpecSerializerTest.groovy

            def packageNames = [ 'allowed.pkg1', 'allowed.pkg2' ]
            def resourceNames = [ 'allowed.resource1', 'allowed.resource2' ]
            def resourcePrefixes = [ 'allowed.resourcePrefix1.', 'allowed.resourcePrefix2.' ]
            return new FilteringClassLoader.Spec(classNames, packageNames, packagePrefixes, resourcePrefixes, resourceNames, disallowedClassNames, disallowedPackagePrefixes)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/HierarchicalClassLoaderStructureSerializerTest.groovy

            def packageNames = [ 'allowed.pkg1', 'allowed.pkg2' ]
            def resourceNames = [ 'allowed.resource1', 'allowed.resource2' ]
            def resourcePrefixes = [ 'allowed.resourcePrefix1.', 'allowed.resourcePrefix2.' ]
            return new FilteringClassLoader.Spec(classNames, packageNames, packagePrefixes, resourcePrefixes, resourceNames, disallowedClassNames, disallowedPackagePrefixes)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/FilteringClassLoaderSpecSerializerTest.groovy

            def packageNames = [ 'allowed.pkg1', 'allowed.pkg2' ]
            def resourceNames = [ 'allowed.resource1', 'allowed.resource2' ]
            def resourcePrefixes = [ 'allowed.resourcePrefix1.', 'allowed.resourcePrefix2.' ]
            def spec = new FilteringClassLoader.Spec(classNames, packageNames, packagePrefixes, resourcePrefixes, resourceNames, disallowedClassNames, disallowedPackagePrefixes)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/storage_decorator.go

    	config *storagebackend.ConfigForResource,
    	resourcePrefix string,
    	keyFunc func(obj runtime.Object) (string, error),
    	newFunc func() runtime.Object,
    	newListFunc func() runtime.Object,
    	getAttrsFunc storage.AttrFunc,
    	trigger storage.IndexerFuncs,
    	indexers *cache.Indexers) (storage.Interface, factory.DestroyFunc, error) {
    	return NewRawStorage(config, newFunc, newListFunc, resourcePrefix)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/lister_watcher.go

    type listerWatcher struct {
    	storage         storage.Interface
    	resourcePrefix  string
    	newListFunc     func() runtime.Object
    	contextMetadata metadata.MD
    }
    
    // NewListerWatcher returns a storage.Interface backed ListerWatcher.
    func NewListerWatcher(storage storage.Interface, resourcePrefix string, newListFunc func() runtime.Object, contextMetadata metadata.MD) cache.ListerWatcher {
    	return &listerWatcher{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:51:06 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/storage_factory.go

    			Versioner:      storage.APIObjectVersioner{},
    			GroupResource:  storageConfig.GroupResource,
    			ResourcePrefix: resourcePrefix,
    			KeyFunc:        keyFunc,
    			NewFunc:        newFunc,
    			NewListFunc:    newListFunc,
    			GetAttrsFunc:   getAttrsFunc,
    			IndexerFuncs:   triggerFuncs,
    			Indexers:       indexers,
    			Codec:          storageConfig.Codec,
    		}
    		cacher, err := cacherstorage.NewCacherFromConfig(cacherConfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/DefaultClassLoaderRegistry.java

            for (String resource : apiAggregate.getExportedResources()) {
                apiSpec.allowResource(resource);
            }
            for (String resourcePrefix : apiAggregate.getExportedResourcePrefixes()) {
                apiSpec.allowResources(resourcePrefix);
            }
            for (Class<?> clazz : apiAggregate.getExportedClasses()) {
                apiSpec.allowClass(clazz);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    type tearDownFunc func()
    
    type setupOptions struct {
    	resourcePrefix string
    	keyFunc        func(runtime.Object) (string, error)
    	indexerFuncs   map[string]storage.IndexerFunc
    	clock          clock.WithTicker
    }
    
    type setupOption func(*setupOptions)
    
    func withDefaults(options *setupOptions) {
    	prefix := "/pods"
    
    	options.resourcePrefix = prefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top