MCPcopy Index your code
hub / github.com/feast-dev/feast / apply_saved_dataset

Method apply_saved_dataset

sdk/python/feast/infra/registry/sql.py:1028–1040  ·  view source on GitHub ↗
(
        self,
        saved_dataset: SavedDataset,
        project: str,
        commit: bool = True,
    )

Source from the content-addressed store, hash-verified

1026 return []
1027
1028 def apply_saved_dataset(
1029 self,
1030 saved_dataset: SavedDataset,
1031 project: str,
1032 commit: bool = True,
1033 ):
1034 return self._apply_object(
1035 saved_datasets,
1036 project,
1037 "saved_dataset_name",
1038 saved_dataset,
1039 "saved_dataset_proto",
1040 )
1041
1042 def apply_validation_reference(
1043 self,

Callers 2

create_saved_datasetMethod · 0.45
ApplySavedDatasetMethod · 0.45

Calls 1

_apply_objectMethod · 0.95

Tested by

no test coverage detected