Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for Indexes (0.64 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    func TestValidateIndexers(t *testing.T) {
    	testcases := []struct {
    		name          string
    		indexers      *cache.Indexers
    		expectedError bool
    	}{
    		{
    			name:          "nil indexers",
    			indexers:      nil,
    			expectedError: false,
    		},
    		{
    			name: "normal indexers",
    			indexers: &cache.Indexers{
    				"f:spec.nodeName":            emptyIndexFunc,
    				"l:controller-revision-hash": emptyIndexFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control_test.go

    	podsLister       corelisters.PodLister
    	claimsLister     corelisters.PersistentVolumeClaimLister
    	setsLister       appslisters.StatefulSetLister
    	podsIndexer      cache.Indexer
    	claimsIndexer    cache.Indexer
    	setsIndexer      cache.Indexer
    	revisionsIndexer cache.Indexer
    	createPodTracker requestTracker
    	updatePodTracker requestTracker
    	deletePodTracker requestTracker
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (FMOVDload [off1] {sym} (ADDconst [off2] ptr) mem) && is32Bit(int64(off1)+off2)
    	&& (ptr.Op != OpSB || !config.ctxt.Flag_dynlink) =>
    	(FMOVDload [off1+int32(off2)] {sym} ptr mem)
    
    // register indexed load
    (MOVDload  [off] {sym} (ADD ptr idx) mem) && off == 0 && sym == nil => (MOVDloadidx ptr idx mem)
    (MOVWUload [off] {sym} (ADD ptr idx) mem) && off == 0 && sym == nil => (MOVWUloadidx ptr idx mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    	{AFMOVS, C_FREG, C_NONE, C_NONE, C_ROFF, C_NONE, 99, 4, 0, 0, 0},
    	{AFMOVD, C_FREG, C_NONE, C_NONE, C_ROFF, C_NONE, 99, 4, 0, 0, 0},
    
    	/* pre/post-indexed/signed-offset load/store register pair
    	   (unscaled, signed 10-bit quad-aligned and long offset).
    	The pre/post-indexed format only supports OREG cases because
    	the RSP and pseudo registers are not allowed to be modified
    	in this way. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. pkg/registry/batch/job/strategy_test.go

    				ObjectMeta: validObjectMeta,
    				Status: batch.JobStatus{
    					CompletionTime: &now,
    					Active:         1,
    				},
    			},
    		},
    		"invalid attempt setting CompletedIndexes when non-indexed completion mode is used": {
    			enableJobManagedBy: true,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:    ptr.To[int32](5),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Attempting to sync node with API server")
    	} else {
    		// we don't have a client to sync!
    		nodeIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{})
    		nodeLister = corelisters.NewNodeLister(nodeIndexer)
    		nodeHasSynced = func() bool { return true }
    		klog.InfoS("Kubelet is running in standalone mode, will skip API server sync")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    function yaml-map-string-stringarray {
      declare -r name="${1}"
      declare -r encoded="${2}"
      declare -r kv_sep="${3:-:}"
      declare -r item_sep="${4:-,}"
    
      declare -a pairs # indexed array
      declare -A map # associative array
      IFS="${item_sep}" read -ra pairs <<<"${encoded}" # split on item_sep
      for pair in "${pairs[@]}"; do
        declare key
        declare value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

        }
        // Using buildKeepingLast() so as not to fail on duplicate keys
        return builder.buildKeepingLast();
      }
    
      /**
       * Returns a map with the given {@code values}, indexed by keys derived from those values. In
       * other words, each input value produces an entry in the map whose key is the result of applying
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

        }
        // Using buildKeepingLast() so as not to fail on duplicate keys
        return builder.buildKeepingLast();
      }
    
      /**
       * Returns a map with the given {@code values}, indexed by keys derived from those values. In
       * other words, each input value produces an entry in the map whose key is the result of applying
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
Back to top