Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 603 for Indexes (1.27 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

            operand_op != nullptr) {
          work_list_.push_back(operand_op);
        }
      }
    
      // Returns the quantization params for the bias input from the non-bias
      // operands which have their indexes in the `non_biases` vector. The returned
      // parameters are calculated by `func`.
      QuantizedType GetBiasParams(Operation* op, int bias_index,
                                  ArrayRef<int> non_bias_operand_indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. android/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
    - 8.5K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3.go

    // Size returns the output size of the hash function in bytes.
    func (d *state) Size() int { return d.outputLen }
    
    // Reset clears the internal state by zeroing the sponge state and
    // the buffer indexes, and setting Sponge.state to absorbing.
    func (d *state) Reset() {
    	// Zero the permutation's state.
    	for i := range d.a {
    		d.a[i] = 0
    	}
    	d.state = spongeAbsorbing
    	d.i, d.n = 0, 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		limit = listOptions.Limit
    	}
    
    	var estimatedObjectsToBeProcessed int64
    
    	switch {
    	case isListFromCache:
    		// TODO: For resources that implement indexes at the watchcache level,
    		//  we need to adjust the cost accordingly
    		estimatedObjectsToBeProcessed = numStored
    	case listOptions.FieldSelector != "" || listOptions.LabelSelector != "":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Streams.java

      }
    
      /**
       * Returns a stream consisting of the results of applying the given function to the elements of
       * {@code stream} and their indexes in the stream. For example,
       *
       * <pre>{@code
       * mapWithIndex(
       *     IntStream.of(10, 11, 12),
       *     (e, index) -> index + ":" + e)
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    					{
    						Type:    batch.JobFailed,
    						Status:  v1.ConditionTrue,
    						Reason:  batch.JobReasonFailedIndexes,
    						Message: "Job has failed indexes",
    					},
    				},
    			},
    		},
    		"job failed due to exceeding max failed indexes": {
    			enableJobBackoffLimitPerIndex: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. test/bounds.go

    	// Bitwise and truncates the maximum value to the mask value.
    	// The result (for a positive mask) cannot be negative, so elision
    	// applies to both signed and unsigned indexes.
    	use(s[i&999])
    	use(a1[i&999])
    	use(a1k[i&999])   // ERROR "index bounds check elided"
    	use(a100k[i&999]) // ERROR "index bounds check elided"
    	use(p1[i&999])
    	use(p1k[i&999])   // ERROR "index bounds check elided"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    }
    
    // FromTag reports closest matching ID for an internal language Tag.
    func FromTag(t language.Tag) (id ID, exact bool) {
    	// TODO: perhaps give more frequent tags a lower index.
    	// TODO: we could make the indexes stable. This will excluded some
    	//       possibilities for optimization, so don't do this quite yet.
    	exact = true
    
    	b, s, r := t.Raw()
    	if t.HasString() {
    		if t.IsPrivateUse() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v1.go

    // - erasure algorithm is different
    // - data blocks are different
    // - parity blocks are different
    // - block size is different
    // - distribution array size is different
    // - distribution indexes are different
    func (ei ErasureInfo) Equal(nei ErasureInfo) bool {
    	if ei.Algorithm != nei.Algorithm {
    		return false
    	}
    	if ei.DataBlocks != nei.DataBlocks {
    		return false
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    	Reg   Reg
    	Index int
    }
    
    func (RegX) IsArg() {}
    
    func (r RegX) String() string {
    	return fmt.Sprintf("%s[%d]", r.Reg, r.Index)
    }
    
    // A RegList is a register list.
    // Bits at indexes x = 0 through 15 indicate whether the corresponding Rx register is in the list.
    type RegList uint16
    
    func (RegList) IsArg() {}
    
    func (r RegList) String() string {
    	var buf bytes.Buffer
    	fmt.Fprintf(&buf, "{")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
Back to top