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

  /external/tensorflow/tensorflow/contrib/eager/python/
datasets.py 110 return remote_iterator.get_next()
199 def get_next(self, name=None): member in class:Iterator
  /external/tensorflow/tensorflow/python/data/ops/
iterator_ops.py 31 # NOTE(mrry): It is legitimate to call `Iterator.get_next()` multiple
34 # users call `Iterator.get_next()` in each iteration of their training
35 # loop. `Iterator.get_next()` adds ops to the graph, and executing
43 "An unusually high number of `Iterator.get_next()` calls was detected. "
44 "This often indicates that `Iterator.get_next()` is being called inside "
47 "`next_element = iterator.get_next()` once outside the loop, and use "
114 prediction, loss = model_fn(iterator.get_next())
205 next_element = iterator.get_next()
306 def get_next(self, name=None): member in class:Iterator
312 when the `Iterator.get_next()` operation raise
    [all...]
  /external/libmojo/third_party/jinja2/
_compat.py 47 get_next = lambda x: x.__next__ variable
78 get_next = lambda x: x.next variable
  /external/mesa3d/src/compiler/glsl/
list.h 66 const exec_node *get_next() const;
67 exec_node *get_next();
202 inline const exec_node *exec_node::get_next() const function in class:exec_node
207 inline exec_node *exec_node::get_next() function in class:exec_node
  /external/v8/src/parsing/
pattern-rewriter.cc 590 Statement* get_next = factory()->NewExpressionStatement( local
638 // #get_next;
647 body->statements()->Add(get_next, zone());
  /external/libxml2/python/
libxml.py 307 def get_next(self): member in class:xmlCore
393 next = property(get_next, None, None, "Next sibling node")
  /external/libnl/python/netlink/
core.py 448 def get_next(self): member in class:ObjIterator
462 ret = self.get_next()
480 def get_next(self): member in class:ReverseObjIterator

Completed in 380 milliseconds