MCPcopy Create free account
hub / github.com/apache/arrow / files

Method files

dev/release/binary-task.rb:626–643  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

624 end
625
626 def files
627 _files = []
628 directories = [""]
629 until directories.empty?
630 directory = directories.shift
631 list(directory).each do |path|
632 resolved_path = "#{directory}#{path}"
633 case path
634 when "../"
635 when /\/\z/
636 directories << resolved_path
637 else
638 _files << resolved_path
639 end
640 end
641 end
642 _files
643 end
644
645 def list(path)
646 url = build_deployed_url(path)

Callers 4

downloadMethod · 0.45
uploadMethod · 0.45
releaseMethod · 0.45
copy-binary.rbFile · 0.45

Calls 3

listFunction · 0.85
empty?Method · 0.45
eachMethod · 0.45

Tested by

no test coverage detected