Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nextBlock (0.27 sec)

  1. cmd/metacache-stream.go

    // Each block is the size of the capacity of the input channel.
    // The caller should close to indicate the stream has ended.
    func newMetacacheBlockWriter(in <-chan metaCacheEntry, nextBlock func(b *metacacheBlock) error) *metacacheBlockWriter {
    	w := metacacheBlockWriter{blockEntries: cap(in)}
    	w.wg.Add(1)
    	go func() {
    		defer w.wg.Done()
    		var current metacacheBlock
    		var n int
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 19.5K bytes
    - Viewed (0)
Back to top