Searched refs:child (Results 1 - 4 of 4) sorted by relevance

/pkg/src/svc/
H A Dsvc-pkg-repositories-setup57 # If the dataset exists, we mount it along with any child
62 for child in $($ZFS list -H -r -t filesystem \
64 $ZFS mount "$child"
71 "Unable to mount child datasets of $DS" \
/pkg/src/modules/flavor/
H A Dsmf_manifest.py435 for child in service.childNodes:
436 if isinstance(child, minidom.Element) and \
437 child.tagName == "dependency":
438 svc_deps.append(child)
/pkg/src/modules/solver/
H A Dsolver.c203 int child = 1; local
206 while (child < size){
207 if (child+1 < size && activity[heap[child]] < activity[heap[child+1]])
208 child++;
210 assert(child < size);
212 if (act >= activity[heap[child]])
215 heap[i] = heap[child];
217 i = child;
[all...]
/pkg/src/tests/cli/
H A Dt_pkgdep_resolve.py2979 for node, child in zip(t[1:], t[2:]):
2980 if child in expected_require:
2984 (node, child))

Completed in 45 milliseconds