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

Method __init__

dask/layers.py:139–153  ·  view source on GitHub ↗
(
        self,
        name,
        axes,
        chunks,
        numblocks,
        token,
    )

Source from the content-addressed store, hash-verified

137 """
138
139 def __init__(
140 self,
141 name,
142 axes,
143 chunks,
144 numblocks,
145 token,
146 ):
147 super().__init__()
148 self.name = name
149 self.axes = axes
150 self.chunks = chunks
151 self.numblocks = numblocks
152 self.token = token
153 self._cached_keys = None
154
155 def __repr__(self):
156 return f"ArrayOverlapLayer<name='{self.name}'"

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected