HomeSort by relevance Sort by last modified time
    Searched full:copy_function (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/core/common_runtime/
copy_tensor.h 57 CopyFunction copy_function) {
59 Register(sender_device_type, receiver_device_type, copy_function));
69 CopyFunction copy_function);
copy_tensor.cc 36 copy_function(cf) {}
39 CopyTensor::CopyFunction copy_function; member in struct:tensorflow::__anon39468::RegistrationInfo
166 void CopyDeviceToDevice(CopyTensor::CopyFunction copy_function,
184 [copy_function, src, dst, src_alloc_attr, dst_alloc_attr,
200 copy_function(send_dev_context, recv_dev_context, src, dst,
226 copy_function(send_dev_context, recv_dev_context, src, dst, src_alloc_attr,
266 CopyDeviceToDevice(ri.copy_function, cpu_allocator, out_allocator,
335 CopyFunction copy_function) {
338 copy_function);
  /external/python/cpython3/Doc/library/
shutil.rst 196 copy_function=copy2, ignore_dangling_symlinks=False)
229 If *copy_function* is given, it must be a callable that will be used to copy
239 Added the *copy_function* argument to be able to provide a custom copy
287 .. function:: move(src, dst, copy_function=copy2)
297 used. Otherwise, *src* is copied to *dst* using *copy_function* and then
301 If *copy_function* is given, it must be a callable that takes two arguments
304 :func:`copytree` is called, passing it the :func:`copy_function`. The
305 default *copy_function* is :func:`copy2`. Using :func:`copy` as the
306 *copy_function* allows the move to succeed when it is not possible to also
315 Added the *copy_function* keyword argument
    [all...]
  /external/python/cpython3/Lib/
shutil.py 273 def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2,
303 The optional copy_function argument is a callable that will be used
326 # We can't just leave it to `copy_function` because legacy
327 # code with a custom `copy_function` may rely on copytree
338 copy_function)
340 copy_function(srcname, dstname)
342 copytree(srcname, dstname, symlinks, ignore, copy_function)
345 copy_function(srcname, dstname)
506 def move(src, dst, copy_function=copy2):
523 The optional `copy_function` argument is a callable that will be use
    [all...]
  /external/python/cpython3/Lib/test/
test_shutil.py     [all...]
  /external/python/cpython3/Doc/whatsnew/
3.2.rst     [all...]
3.5.rst     [all...]

Completed in 116 milliseconds