MCPcopy
hub / github.com/treeverse/dvc / resolve

Method resolve

dvc/parsing/__init__.py:211–215  ·  view source on GitHub ↗

Used for testing purposes, otherwise use resolve_one().

(self)

Source from the content-addressed store, hash-verified

209 return definition.resolve_one(key)
210
211 def resolve(self):
212 """Used for testing purposes, otherwise use resolve_one()."""
213 data = join(map(self.resolve_one, self.get_keys()))
214 logger.trace("Resolved dvc.yaml:\n%s", data)
215 return {STAGES_KWD: data}
216
217 # Top-level sections are eagerly evaluated, whereas stages are lazily evaluated,
218 # one-by-one.

Calls 2

get_keysMethod · 0.95
joinFunction · 0.85