Search

December 04, 2015
General »
...N could be number of edges and M could be number of nodes or something).
November 24, 2015
General »
...could do two passes. First, read all nodes into a table, which you can index...
November 22, 2015
General »
...break relationships with consistency requirements across compute-nodes (servers).

Looks interesting, but I don't...
November 16, 2015
General »
...changing, and all your nodes are flavored as pointing to const nodes.

I see you...
October 26, 2015
Learn »
...a generic tree or array container whose nodes
can either be elements or a subtree...
October 24, 2015
General »
...existing nodes and it keeps mutable lists in the nodes (i.e. making the nodes...
October 22, 2015
General »
...data structures have their strengths especially when nodes are
part of several containers.
I implemented...
October 21, 2015
Learn »
...so:

string getCData(XmlNode[]nodes) {
  if (!nodes.length) return "";
  return nodes[0].getCData();
}

and in...
October 20, 2015
Learn »
...DescribeInstances.xml

You can find all parent nodes that provide this set of information with...
October 20, 2015
Learn »
...string path)
{
  XmlNode[] nodes = src.parseXPath(path);
  return nodes.length==0 ? null : nodes[0];
}

Then...
34 35 36 37 38 39 40 41 42 43 44 45
Next ›   Last »