Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-06-16 | Avoid unnecessary work in accessing container entries | Paul Cristian Sarbu | |
- in sequence containers, use operator[] instead of .at() when accessing indices guaranteed to be in bound; - in associative containers, prefer .find() and reusing the returned const iterator to using .contains() and .at(); while there, make any so obtained iterators const if they are read-only. | |||
2025-05-12 | TreeOperationsUtils: Fix Bazel Directory creation | Oliver Reiche | |
... which requires all entries to be sorted in lexicographical order. | |||
2025-05-05 | TreeOperationsUtils: apply AsyncMap to compute tree overlay | Sascha Roloff | |
2025-05-05 | TreeOperationsUtils: make WriteTree method directly return ObjectInfo ↵ | Sascha Roloff | |
instead of ArtifactDigest | |||
2025-05-05 | TreeOperationsUtils: make free-standing implementation functions member ↵ | Sascha Roloff | |
functions of the class | |||
2025-05-05 | TreeOperationsUtils: refactor digest population into proto messages | Sascha Roloff | |
2025-05-05 | TreeOperationsUtils: add missing switch case in bazel directory generation | Sascha Roloff | |
2025-05-05 | TreeOperationsUtils: fix typo in comment | Sascha Roloff | |
2025-04-08 | Tree-overlay utils: also report the path within the original tree | Klaus Aehlig | |
... instead of only the file name. Having the full path into the tree makes it more easy for the user to understand the root cause of a conflict. | |||
2025-04-08 | Improve reporting on tree errors | Klaus Aehlig | |
- break lines at logicial point, following the layout of our other error messages - fix a typo - properly quote the path of the conflict | |||
2025-04-07 | TreeOperationsUtils: sequential version of tree overlay computation | Sascha Roloff | |