740741742743744745746747748749750
*/ public int getBlockIndexNear(long offset) { ArrayList<BlockRegion> list = dataIndex.getBlockRegionList(); int idx = Utils .lowerBound(list, new ScalarLong(offset), new ScalarComparator()); if (idx == list.size()) { return -1; }
744745746747748749750751752753754