MCPcopy Create free account
hub / github.com/feast-dev/feast / _list_saved_datasets

Method _list_saved_datasets

sdk/python/feast/infra/registry/sql.py:949–960  ·  view source on GitHub ↗
(
        self, project: str, tags: Optional[dict[str, str]] = None, **kwargs
    )

Source from the content-addressed store, hash-verified

947 )
948
949 def _list_saved_datasets(
950 self, project: str, tags: Optional[dict[str, str]] = None, **kwargs
951 ) -> List[SavedDataset]:
952 return self._list_objects(
953 saved_datasets,
954 project,
955 SavedDatasetProto,
956 SavedDataset,
957 "saved_dataset_proto",
958 tags=tags,
959 **kwargs,
960 )
961
962 def _list_on_demand_feature_views(
963 self, project: str, tags: Optional[dict[str, str]], **kwargs

Callers

nothing calls this directly

Calls 1

_list_objectsMethod · 0.95

Tested by

no test coverage detected