Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nextBlock (0.06 sec)

  1. src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java

                super(config, command);
            }
    
            @Override
            public ServerMessageBlock2 getNext() {
                return nextBlock;
            }
    
            @Override
            public void setNext(ServerMessageBlock2 next) {
                this.nextBlock = next;
            }
    
            // Helper methods to manipulate parent's private fields via reflection or protected methods
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  2. 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
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed May 07 15:37:12 UTC 2025
    - 19.5K bytes
    - Viewed (0)
Back to top