コード例 #1
0
ファイル: input_node.py プロジェクト: wuisawesome/ray
 def __str__(self) -> str:
     return get_dag_node_str(self, "__InputNode__")
コード例 #2
0
ファイル: input_node.py プロジェクト: alipay/ray
 def __str__(self) -> str:
     return get_dag_node_str(self, f'["{self._key}"]')
コード例 #3
0
ファイル: deployment_node.py プロジェクト: alipay/ray
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._deployment))
コード例 #4
0
ファイル: class_node.py プロジェクト: afzalmushtaque/ray
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._body))
コード例 #5
0
ファイル: class_node.py プロジェクト: afzalmushtaque/ray
 def __str__(self) -> str:
     return get_dag_node_str(self, f"{self._method_name}()")
コード例 #6
0
 def __str__(self) -> str:
     return get_dag_node_str(
         self,
         str(self._deployment_method_name) + "() @ " +
         str(self._deployment),
     )
コード例 #7
0
 def __str__(self) -> str:
     return get_dag_node_str(self,
                             f"Preprocessor: {str(self._preprocessor)}")
コード例 #8
0
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._deployment_function_handle))