MCPcopy Index your code
hub / github.com/dask/dask / _dict

Method _dict

dask/layers.py:159–166  ·  view source on GitHub ↗

Materialize full dict representation

(self)

Source from the content-addressed store, hash-verified

157
158 @property
159 def _dict(self):
160 """Materialize full dict representation"""
161 if hasattr(self, "_cached_dict"):
162 return self._cached_dict
163 else:
164 dsk = self._construct_graph()
165 self._cached_dict = dsk
166 return self._cached_dict
167
168 def __getitem__(self, key):
169 return self._dict[key]

Callers

nothing calls this directly

Calls 1

_construct_graphMethod · 0.95

Tested by

no test coverage detected