MCPcopy
hub / github.com/pydata/xarray / list_chunkmanagers

Function list_chunkmanagers

xarray/namedarray/parallelcompat.py:57–69  ·  view source on GitHub ↗

Return a dictionary of available chunk managers and their ChunkManagerEntrypoint subclass objects. Returns ------- chunkmanagers : dict Dictionary whose values are registered ChunkManagerEntrypoint subclass instances, and whose values are the strings under which the

()

Source from the content-addressed store, hash-verified

55
56@functools.lru_cache(maxsize=1)
57def list_chunkmanagers() -> dict[str, ChunkManagerEntrypoint[Any]]:
58 """
59 Return a dictionary of available chunk managers and their ChunkManagerEntrypoint subclass objects.
60
61 Returns
62 -------
63 chunkmanagers : dict
64 Dictionary whose values are registered ChunkManagerEntrypoint subclass instances, and whose values
65 are the strings under which they are registered.
66 """
67 entrypoints = entry_points(group="xarray.chunkmanagers")
68
69 return load_chunkmanagers(entrypoints)
70
71
72def load_chunkmanagers(

Callers 3

guess_chunkmanagerFunction · 0.85
get_chunked_array_typeFunction · 0.85

Calls 1

load_chunkmanagersFunction · 0.85

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…