Displaying 2 results from an estimated 2 matches for "node_".
Did you mean:
node
2012 May 16
7
Puppet Node Create?
Was...
Bash$ puppet node create
This "create" action no longer exists. Has it been depreciated?
Is the only way to create a node through puppetmaser now?
Thanks, D
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/g3lJoO-j_u4J.
To post
2011 Feb 25
1
[LLVMdev] Live values detection in LLVM
...as :
isLiveThroughBlock(Value * v, BasicBlock * b)
isKilledInBlock(Value * v, BasicBlock * b)
* If I understand well the code, dominator trees are used to compute the
LiveThrough blocks.
The definition of dominator in graph theory is the following:
"A node <http://en.wikipedia.org/wiki/Node_%28computer_science%29> d
/dominates/ a node n if every path from the /start node/ to n must go
through d."
Then, that means in some cases, the method isLiveThroughBlock is going
to answer false, whereas the right answer is true. Is it right ?
* To compute the set of blocks where isKill...