Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for asRanges (0.08 sec)

  1. android/guava/src/com/google/common/collect/TreeRangeSet.java

        this.rangesByLowerBound = rangesByLowerCut;
      }
    
      @LazyInit private transient @Nullable Set<Range<C>> asRanges;
      @LazyInit private transient @Nullable Set<Range<C>> asDescendingSetOfRanges;
    
      @Override
      public Set<Range<C>> asRanges() {
        Set<Range<C>> result = asRanges;
        return (result == null) ? asRanges = new AsRanges(rangesByLowerBound.values()) : result;
      }
    
      @Override
      public Set<Range<C>> asDescendingSetOfRanges() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 32.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

       * returns an {@code ImmutableRangeSet}.
       *
       * @since 21.0
       */
      public ImmutableRangeSet<C> union(RangeSet<C> other) {
        return unionOf(Iterables.concat(asRanges(), other.asRanges()));
      }
    
      /**
       * Returns a new range set consisting of the intersection of this range set and {@code other}.
       *
       * <p>This is essentially the same as {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27.4K bytes
    - Viewed (0)
  3. cmd/erasure-sets.go

    func (s *erasureSets) Legacy() (ok bool) {
    	return s.distributionAlgo == formatErasureVersionV2DistributionAlgoV1
    }
    
    // connectDisks - attempt to connect all the endpoints, loads format
    // and re-arranges the disks in proper position.
    func (s *erasureSets) connectDisks(log bool) {
    	defer func() {
    		s.lastConnectDisksOpTime = time.Now()
    	}()
    
    	var wg sync.WaitGroup
    	diskMap := s.getDiskMap()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 37K bytes
    - Viewed (1)
Back to top