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

Method with_name

sdk/python/feast/base_feature_view.py:217–228  ·  view source on GitHub ↗

Returns a renamed copy of this base feature view. This renamed copy should only be used for query operations and will not modify the underlying base feature view. Args: name: The name to assign to the copy.

(self, name: str)

Source from the content-addressed store, hash-verified

215 )
216
217 def with_name(self, name: str):
218 """
219 Returns a renamed copy of this base feature view. This renamed copy should only be
220 used for query operations and will not modify the underlying base feature view.
221
222 Args:
223 name: The name to assign to the copy.
224 """
225 cp = self.__copy__()
226 cp.projection.name_alias = name
227
228 return cp
229
230 def set_projection(self, feature_view_projection: FeatureViewProjection) -> None:
231 """

Callers 2

init_repoFunction · 0.80

Calls 1

__copy__Method · 0.95

Tested by 1