Home
last modified time | relevance | path

Searched refs:remainingBlocks (Results 1 – 8 of 8) sorted by relevance

/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/blockmanagement/
H A DTestCachedBlocksList.java110 CachedBlock[] remainingBlocks = Arrays.copyOf(blocks, blocks.length); in testRemoveElementsFromList() local
111 for (int removed = 0; removed < remainingBlocks.length; ) { in testRemoveElementsFromList()
112 int toRemove = r.nextInt(remainingBlocks.length); in testRemoveElementsFromList()
113 if (remainingBlocks[toRemove] != null) { in testRemoveElementsFromList()
114 Assert.assertTrue(list.remove(remainingBlocks[toRemove])); in testRemoveElementsFromList()
115 remainingBlocks[toRemove] = null; in testRemoveElementsFromList()
/dports/devel/spark/spark-2.1.1/core/src/main/scala/org/apache/spark/storage/
H A DShuffleBlockFetcherIterator.scala165 val remainingBlocks = new HashSet[String]() ++= sizeMap.keys constant
179 remainingBlocks -= blockId
181 remainingBlocks.isEmpty))
182 logDebug("remainingBlocks: " + remainingBlocks)
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Freespace/
H A DInMemoryFreespaceManager.cs164 int remainingBlocks = blocksFound - length; in AllocateSlot()
165 if (SplitRemainder(remainingBlocks)) in AllocateSlot()
167 AddFreeSlotNodes(address + length, remainingBlocks); in AllocateSlot()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/tinsel/
H A Dgraphics.cpp53 uint32 remainingBlocks = 0; in psxPJCRLEUnwinder() local
72 remainingBlocks = (imageWidth * imageHeight) / 16; in psxPJCRLEUnwinder()
74 while (remainingBlocks) { // Repeat until all blocks are decompressed in psxPJCRLEUnwinder()
102 if (remainingBlocks < controlBits) { in psxPJCRLEUnwinder()
103 controlBits = controlBits - remainingBlocks; in psxPJCRLEUnwinder()
104 decremTiles = remainingBlocks; in psxPJCRLEUnwinder()
111 remainingBlocks -= decremTiles; in psxPJCRLEUnwinder()
/dports/games/scummvm/scummvm-2.5.1/engines/tinsel/
H A Dgraphics.cpp64 uint32 remainingBlocks = 0; in psxPJCRLEUnwinder() local
83 remainingBlocks = (imageWidth * imageHeight) / 16; in psxPJCRLEUnwinder()
85 while (remainingBlocks) { // Repeat until all blocks are decompressed in psxPJCRLEUnwinder()
113 if (remainingBlocks < controlBits) { in psxPJCRLEUnwinder()
114 controlBits = controlBits - remainingBlocks; in psxPJCRLEUnwinder()
115 decremTiles = remainingBlocks; in psxPJCRLEUnwinder()
122 remainingBlocks -= decremTiles; in psxPJCRLEUnwinder()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/pkg/querier/
H A Dblocks_store_queryable.go496 remainingBlocks = knownBlocks.GetULIDs()
506 clients, err := q.stores.GetClientsFor(q.userID, remainingBlocks, attemptedBlocks)
550 remainingBlocks = missingBlocks
555 …ecause some blocks were not queried: %s", strings.Join(convertULIDsToString(remainingBlocks), " "))
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/cortexproject/cortex/pkg/querier/
H A Dblocks_store_queryable.go496 remainingBlocks = knownBlocks.GetULIDs()
506 clients, err := q.stores.GetClientsFor(q.userID, remainingBlocks, attemptedBlocks)
550 remainingBlocks = missingBlocks
555 …ecause some blocks were not queried: %s", strings.Join(convertULIDsToString(remainingBlocks), " "))
/dports/multimedia/zoneminder/zoneminder-1.36.5/web/api/lib/Cake/View/
H A DView.php949 $remainingBlocks = count($this->Blocks->unclosed());
951 if ($initialBlocks !== $remainingBlocks) {