Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 268 for Indexes (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker_test.go

    		GrouplessAPIPrefixes: sets.NewString("api"),
    	}
    
    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			watchTracker := &watchTracker{
    				indexes:    getBuiltinIndexes(),
    				watchCount: make(map[watchIdentifier]int),
    			}
    
    			requestInfo, err := requestInfoFactory.NewRequestInfo(testCase.request)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 14:02:51 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

        // satisfy the same operands and results constraint. The keys of this map
        // are the values from `operand_states_` and `result_state_`.
        std::unordered_map<int, RequantizeState> rescale_states_;
    
        // Maps of indexes to the propagation state vector from the ops operands,
        // results and arguments.
        llvm::DenseMap<OpValue, int> operand_states_;
        llvm::DenseMap<OpValue, int> result_states_;
      };
    
      func::FuncOp func_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. pkg/kubelet/pod/pod_manager.go

    // AddPod, UpdatePod, or RemovePod.
    type basicManager struct {
    	// Protects all internal maps.
    	lock sync.RWMutex
    
    	// Regular pods indexed by UID.
    	podByUID map[kubetypes.ResolvedPodUID]*v1.Pod
    	// Mirror pods indexed by UID.
    	mirrorPodByUID map[kubetypes.MirrorPodUID]*v1.Pod
    
    	// Pods indexed by full name for easy access.
    	podByFullName       map[string]*v1.Pod
    	mirrorPodByFullName map[string]*v1.Pod
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    #### Endpoints
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/utils.h

        ShapedType input_type, ShapedType output_type) {
      ArrayRef<int64_t> in_shape = input_type.getShape();
      ArrayRef<int64_t> out_shape = output_type.getShape();
    
      // Get the indexes of the non-identity dimensions and the identity dimensions
      // in the input shape.
      SmallVector<int32_t> input_nonidentity_dims_index_array;
      SmallVector<int32_t> input_identity_dims_index_array;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		if err != nil {
    			return nil, err
    		}
    		return objIndexFunc(seo)
    	}
    }
    
    func storeElementIndexers(indexers *cache.Indexers) cache.Indexers {
    	if indexers == nil {
    		return cache.Indexers{}
    	}
    	ret := cache.Indexers{}
    	for indexName, indexFunc := range *indexers {
    		ret[indexName] = storeElementIndexFunc(indexFunc)
    	}
    	return ret
    }
    
    // watchCache implements a Store interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/math/rand/rand.go

    		m[i] = m[j]
    		m[j] = i
    	}
    	return m
    }
    
    // Shuffle pseudo-randomizes the order of elements.
    // n is the number of elements. Shuffle panics if n < 0.
    // swap swaps the elements with indexes i and j.
    func (r *Rand) Shuffle(n int, swap func(i, j int)) {
    	if n < 0 {
    		panic("invalid argument to Shuffle")
    	}
    
    	// Fisher-Yates shuffle: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/CompactLinkedHashMap.java

       * they're defined above -- including logic to add and subtract 1 to map between the values stored
       * in the predecessor/successor arrays and the indexes in the elements array that they identify.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	// full 16 byte block.
    	CMPBNE R3, $16, 2(PC)
    	VLEIB  $12, $1, M_4
    
    	// Finally, set up the coefficients for the final multiplication.
    	// We have previously saved r and 5r in the 32-bit even indexes
    	// of the R_[0-4] and R5_[1-4] coefficient registers.
    	//
    	// We want lane 0 to be multiplied by r² so that can be kept the
    	// same. We want lane 1 to be multiplied by r so we need to move
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. src/runtime/error.go

    type boundsError struct {
    	x int64
    	y int
    	// Values in an index or slice expression can be signed or unsigned.
    	// That means we'd need 65 bits to encode all possible indexes, from -2^63 to 2^64-1.
    	// Instead, we keep track of whether x should be interpreted as signed or unsigned.
    	// y is known to be nonnegative and to fit in an int.
    	signed bool
    	code   boundsErrorCode
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top