4546474849505152535455
while (partitions.hasNext()) { List<IndexFile> indexFiles = partitions.next(); Visitors.visit( indexFiles, new BulkVisitor(context, FILE.name().toLowerCase()) ); } return context; }
22232425262728293031
Visitors.visit( FluentIterable .from(context.getRepository().getTags().entrySet()) .transform(new TagToIndexTag(context, walk)), new BulkVisitor(context, TAG.name().toLowerCase()) ); return context; }
42434445464748495051
ImmutableList<IndexFile> files = builder.build(); logger.info("Found {} index file", files.size()); Visitors.visit( files, new BulkVisitor(context, FILE.name().toLowerCase()) ); return context; }
33343536373839404142
Visitors.visit( FluentIterable .from(walk) .transform(new RevCommitToIndexCommit(context, walk)), new BulkVisitor(context, COMMIT.name().toLowerCase()) ); return context; }