MCPcopy Create free account
hub / github.com/NVIDIA-NeMo/Switchyard / values

Method values

switchyard/lib/session_cache.py:46–48  ·  view source on GitHub ↗

Return the retained values in least-to-most-recent order.

(self)

Source from the content-addressed store, hash-verified

44 self._values.popitem(last=False)
45
46 def values(self) -> list[_V]:
47 """Return the retained values in least-to-most-recent order."""
48 return list(self._values.values())
49
50 def __len__(self) -> int:
51 return len(self._values)

Callers 11

iter_componentsMethod · 0.45
startupMethod · 0.45
shutdownMethod · 0.45
totalMethod · 0.45
_argmax_tierFunction · 0.45
_default_tier_knownMethod · 0.45
_jsonableFunction · 0.45

Calls

no outgoing calls