Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 268 for Indexes (0.14 sec)

  1. android/guava/src/com/google/common/hash/BloomFilter.java

     */
    @Beta
    @ElementTypesAreNonnullByDefault
    public final class BloomFilter<T extends @Nullable Object> implements Predicate<T>, Serializable {
      /**
       * A strategy to translate T instances, to {@code numHashFunctions} bit indexes.
       *
       * <p>Implementations should be collections of pure functions (i.e. stateless).
       */
      interface Strategy extends java.io.Serializable {
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    This fragment is very important: it is the only part of the text that appears in certain contexts such as class and method indexes:
    
    ```java
    /**
     * Returns an Image object that can then be painted on the screen.
     */
    ```
    
    ## 1.3 Code blocks and snippets
    
    `<pre>` is the default HTML tag for preformatted text.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

      // StridedArrayView across a higher dimensional shape.
      //
      // The index `i` must be in [0, shape[axis])` where `shape` is the shape
      // of the tensor and `axis` is the axis along the tensor that the
      // StridedArrayView indexes along.
      int64_t OffsetForIndex(int64_t i) const { return offset_ + i * stride_; }
    
     private:
      // Calculates how many values to skip across a 1-D contiguous array that holds
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    	// for instance due to map-list reordering.
    	ExpectEqual bool
    
    	// Schema to provide to the correlated object
    	Schema common.Schema
    
    	// Array of field names and indexes to traverse to get to the value
    	KeyPath []interface{}
    
    	// Root object to traverse from
    	RootObject    interface{}
    	RootOldObject interface{}
    }
    
    func (c TestCase) Run() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	// The input string s is transformed in multiple chunks (starting with a
    	// chunk size of initialBufSize). nDst and nSrc are per-chunk (or
    	// per-Transform-call) indexes, pDst and pSrc are overall indexes.
    	nDst, nSrc := 0, 0
    	pDst, pSrc := 0, 0
    
    	// pPrefix is the length of a common prefix: the first pPrefix bytes of the
    	// result will equal the first pPrefix bytes of s. It is not guaranteed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. cmd/erasure-healing-common.go

    				// Erasure distribution seems to have lesser
    				// number of items than number of online disks.
    				inconsistent++
    				continue
    			}
    			if meta.Erasure.Distribution[i] != meta.Erasure.Index {
    				// Mismatch indexes with distribution order
    				inconsistent++
    			}
    		}
    	}
    
    	erasureDistributionReliable := true
    	if inconsistent > len(partsMetadata)/2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/BloomFilter.java

     */
    @Beta
    @ElementTypesAreNonnullByDefault
    public final class BloomFilter<T extends @Nullable Object> implements Predicate<T>, Serializable {
      /**
       * A strategy to translate T instances, to {@code numHashFunctions} bit indexes.
       *
       * <p>Implementations should be collections of pure functions (i.e. stateless).
       */
      interface Strategy extends java.io.Serializable {
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/match.go

    		tt := tag.tag()
    		pair, max := makeHaveTag(tt, i)
    		if max != tt.LangID {
    			m.header(max).addIfNew(pair, true)
    		}
    	}
    
    	// update is used to add indexes in the map for equivalent languages.
    	// update will only add entries to original indexes, thus not computing any
    	// transitive relations.
    	update := func(want, have uint16, conf Confidence) {
    		if hh := m.index[language.Language(have)]; hh != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/sort/sort.go

    	// is not a transitive ordering when not-a-number (NaN) values are involved.
    	// See Float64Slice.Less for a correct implementation for floating-point values.
    	Less(i, j int) bool
    
    	// Swap swaps the elements with indexes i and j.
    	Swap(i, j int)
    }
    
    // Sort sorts data in ascending order as determined by the Less method.
    // It makes one call to data.Len to determine n and O(n*log(n)) calls to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Strings.java

        }
        return a.subSequence(a.length() - s, a.length()).toString();
      }
    
      /**
       * True when a valid surrogate pair starts at the given {@code index} in the given {@code string}.
       * Out-of-range indexes return false.
       */
      @VisibleForTesting
      static boolean validSurrogatePairAt(CharSequence string, int index) {
        return index >= 0
            && index <= (string.length() - 2)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:47:03 UTC 2021
    - 12.6K bytes
    - Viewed (0)
Back to top