Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for Indexes (1.17 sec)

  1. pkg/config/schema/codegen/templates/clients.go.tmpl

    					options.FieldSelector = opts.FieldSelector
    					options.LabelSelector = opts.LabelSelector
    					return w(options)
    				},
    			},
    			gvrToObject(g),
    			0,
    			cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc},
    		)
    		setupInformer(opts, inf)
    		return inf
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/response-status-code.md

    * **`200`** und darüber stehen für Responses, die „Successful“ („Erfolgreich“) waren. Diese verwenden Sie am häufigsten.
        * `200` ist der Default-Statuscode, welcher bedeutet, alles ist „OK“.
        * Ein anderes Beispiel ist `201`, „Created“ („Erzeugt“). Wird in der Regel verwendet, wenn ein neuer Datensatz in der Datenbank erzeugt wurde.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:32:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

         * phase they want to execute and we can easily determine what lifecycle we need to run.
         *
         * @return A map of lifecycles, indexed on id
         */
        public Map<String, Lifecycle> getPhaseToLifecycleMap() {
            // If people are going to make their own lifecycles then we need to tell people how to namespace them correctly
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. pkg/controller/ttl/ttl_controller_test.go

    		},
    	}
    
    	for i, testCase := range testCases {
    		fakeClient := &fake.Clientset{}
    		nodeStore := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{})
    		nodeStore.Add(testCase.node)
    		ttlController := &Controller{
    			kubeClient:        fakeClient,
    			nodeStore:         listers.NewNodeLister(nodeStore),
    			desiredTTLSeconds: testCase.desiredTTL,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	items, err := e.lister.ResourceQuotas(namespace).List(labels.Everything())
    	if err != nil {
    		return nil, fmt.Errorf("error resolving quota: %v", err)
    	}
    
    	// if there are no items held in our indexer, check our live-lookup LRU, if that misses, do the live lookup to prime it.
    	if len(items) == 0 {
    		lruItemObj, ok := e.liveLookupCache.Get(namespace)
    		if !ok || lruItemObj.(liveLookupEntry).expiry.Before(time.Now()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/runtime/tracemap.go

    	_    cpu.CacheLinePad
    	mem  traceRegionAlloc
    }
    
    // traceMapNode is an implementation of a lock-free append-only hash-trie
    // (a trie of the hash bits).
    //
    // Key features:
    //   - 4-ary trie. Child nodes are indexed by the upper 2 (remaining) bits of the hash.
    //     For example, top level uses bits [63:62], next level uses [61:60] and so on.
    //   - New nodes are placed at the first empty level encountered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray.go

    }
    
    // Lookup returns an unsorted list of at most n indices where the byte string s
    // occurs in the indexed data. If n < 0, all occurrences are returned.
    // The result is nil if s is empty, s is not found, or n == 0.
    // Lookup time is O(log(N)*len(s) + len(result)) where N is the
    // size of the indexed data.
    func (x *Index) Lookup(s []byte, n int) (result []int) {
    	if len(s) > 0 && n != 0 {
    		matches := x.lookupAll(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    type APIGroupVersion struct {
    	Storage map[string]rest.Storage
    
    	Root string
    
    	// GroupVersion is the external group version
    	GroupVersion schema.GroupVersion
    
    	// AllServedVersionsByResource is indexed by resource and maps to a list of versions that resource exists in.
    	// This was created so that StorageVersion for APIs can include a list of all version that are served for each
    	// GroupResource tuple.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h

        mlir::tf_device::ParallelExecuteOp new_parallel_execute,
        mlir::OpBuilder* builder);
    
    // Determines each logical core argument to metadata argument index mapping,
    // based on sharding. The return value is indexed first by logical core then by
    // argument index.
    llvm::SmallVector<llvm::SmallVector<int64_t, 4>, 4> GetMetadataArgumentMapping(
        const tpu::TPUCompileMetadataProto& metadata);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:18:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. security/pkg/server/ca/node_auth.go

    	}
    	// We want to find out if there is any pod running with the requested identity on the callers node.
    	// The indexer (previously setup) creates a lookup table for a {Node, SA} pair, which we can lookup
    	k := SaNode{
    		ServiceAccount: types.NamespacedName{Name: requestedIdentity.ServiceAccount, Namespace: requestedIdentity.Namespace},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top