Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dirStack (0.14 sec)

  1. cmd/metacache-walk.go

    				return ctx.Err()
    			}
    			meta := metaCacheEntry{name: pathJoinBuf(sb, current, entry)}
    
    			// If directory entry on stack before this, pop it now.
    			for len(dirStack) > 0 && dirStack[len(dirStack)-1] < meta.name {
    				pop := dirStack[len(dirStack)-1]
    				select {
    				case <-ctx.Done():
    					return ctx.Err()
    				case out <- metaCacheEntry{name: pop}:
    				}
    				if opts.Recursive {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top