(h)
| 163 | |
| 164 | @function.Defun(dtypes.string) |
| 165 | def LoadingFunc(h): |
| 166 | remote_iterator = iterator_ops.Iterator.from_string_handle( |
| 167 | h, dataset_ops.get_legacy_output_types(source_dataset), |
| 168 | dataset_ops.get_legacy_output_shapes(source_dataset)) |
| 169 | return remote_iterator.get_next() |
| 170 | |
| 171 | def MapFn(unused_input): |
| 172 | source_dataset_output_types = dataset_ops.get_legacy_output_types( |
nothing calls this directly
no test coverage detected