Examples of ChunkList


Examples of org.eclipse.jgit.generated.storage.dht.proto.GitStore.CachedPackInfo.ChunkList

      init();
    return keySet.contains(objrep.getChunkKey());
  }

  private void init() {
    ChunkList chunkList = info.getChunkList();
    int cnt = chunkList.getChunkKeyCount();
    keySet = new HashSet<ChunkKey>();
    keyList = new ChunkKey[cnt];
    for (int i = 0; i < cnt; i++) {
      ChunkKey key = ChunkKey.fromString(chunkList.getChunkKey(i));
      keySet.add(key);
      keyList[i] = key;
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.