Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for otherhost (0.23 sec)

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

          return false;
        }
        List<?> otherList = (List<?>) other;
        int size = thisList.size();
        if (size != otherList.size()) {
          return false;
        }
        if (thisList instanceof RandomAccess && otherList instanceof RandomAccess) {
          // avoid allocation and use the faster loop
          for (int i = 0; i < size; i++) {
            if (!Objects.equals(thisList.get(i), otherList.get(i))) {
              return false;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 42.2K bytes
    - Viewed (0)
  2. cmd/data-usage-cache.go

    	existingRoot := d.root()
    	otherRoot := other.root()
    	if existingRoot == nil && otherRoot == nil {
    		return
    	}
    	if otherRoot == nil {
    		return
    	}
    	if existingRoot == nil {
    		*d = other.clone()
    		return
    	}
    	if other.Info.LastUpdate.After(d.Info.LastUpdate) {
    		d.Info.LastUpdate = other.Info.LastUpdate
    	}
    	existingRoot.merge(*otherRoot)
    	eHash := d.rootHash()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.7K bytes
    - Viewed (0)
Back to top