Lines Matching refs:is
7 By default, an ``input_node`` is constructed in the inactive state:
29 activated after the entire flow graph is constructed.
33 the ``input_node`` is constructed in the inactive state and activated after
51 squarer is connected. Later, when the edge to cuber is connected, cuber
55 In general it is safest to create your ``input_node`` objects in the inactive
56 state and then activate them after the whole graph is constructed.
62 the overlap of construction and execution. If your graph is a directed
65 edges in reverse topological order; that is, make the edges at the
67 For example, if src is an ``input_node`` and ``func1`` and ``func2`` are both
69 src is activated just after its construction:
105 The above code is safe because the edge from ``func1`` to ``func2`` is made
107 made first, ``func1`` might generate a message before ``func2`` is attached to
109 successor. If src had more than one successor, the successor that is