aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/skyframe
Commit message (Expand)AuthorAge
* Minor documentation and visibility tweaks to InMemoryNodeEntry and Invalidate...Gravatar Janak Ramakrishnan2016-06-29
* Get rid of boolean field in InMemoryNodeEntry. After adding the lastEvaluated...Gravatar Janak Ramakrishnan2016-06-28
* Batchify child node lookups in Skyframe cycle detection.Gravatar Eric Fellheimer2016-06-21
* Minor change to add QueryableGraphBackedSkyFunctionEnvironment.Gravatar Janak Ramakrishnan2016-06-21
* Minor improvement to cycle detection algorithm: Do not recurse into done node...Gravatar Eric Fellheimer2016-06-21
* Log how long Skyframe cycle checking takes.Gravatar Eric Fellheimer2016-06-15
* Remove ability of AbstractQueueVisitor to continue after an interrupt. That f...Gravatar Janak Ramakrishnan2016-06-15
* Use the precomputed skykey hash to short circuit equality comparison.Gravatar Shreya Bhattarai2016-06-14
* Allow AQV users to inject arbitrary handling of classified errors.Gravatar Nathan Harmata2016-05-27
* Assert batch existence of nodes in DirtyingNodeVisitor#visit.Gravatar Janak Ramakrishnan2016-05-24
* Fix bug in lazy removal of reverse deps -- there was one remaining case where...Gravatar Janak Ramakrishnan2016-05-18
* Remove reverse deps lazily, only when the node has finished building and we d...Gravatar Janak Ramakrishnan2016-05-17
* Stop converting temporary direct deps to a set. In almost all cases, this con...Gravatar Janak Ramakrishnan2016-05-16
* Allow Skyframe tests to use the NotifyingGraph and DeterministicGraph helpers...Gravatar Janak Ramakrishnan2016-05-11
* Add random-access indexing into GroupedList. Intended to be a no-op, allowing...Gravatar Janak Ramakrishnan2016-04-28
* Make MinimalVersion package-private, since it has no outside consumers.Gravatar Janak Ramakrishnan2016-03-31
* Fix keep-going build with an existing cycle by only setting errorDepKey in a ...Gravatar Janak Ramakrishnan2016-03-29
* Fix debugging info when crashing with missing SkyFunction.Gravatar Janak Ramakrishnan2016-03-23
* Transform the getBatch result in SkyFunctionEnvironment instead of copying it...Gravatar Janak Ramakrishnan2016-03-22
* Remove the WalkableGraphFactory#afterUse hook, which was only called in SkyQu...Gravatar Nathan Harmata2016-03-21
* Transform the passed-in map in AbstractSkyFunctionEnvironment instead of copy...Gravatar Janak Ramakrishnan2016-03-18
* Fix style issue; convert comment to Javadoc format.Gravatar Ulf Adams2016-03-11
* Use static creation method for SkyKey. This allows interning SkyKeys as they ...Gravatar Janak Ramakrishnan2016-03-03
* Improve the error message when the ParallelEvaluator is unable to create a Sk...Gravatar Luis Fernando Pino Duque2016-02-28
* Prevent new evaluations from starting if a done child's error is discovered. ...Gravatar Janak Ramakrishnan2016-02-23
* Make IntVersion package-private, since it isn't used outside of Skyframe core.Gravatar Janak Ramakrishnan2016-02-12
* Allow ParallelEvaluator to not store errors alongside values if nodes recover...Gravatar Janak Ramakrishnan2016-02-11
* Remove TransitivePackageLoader#getVisitedTargets, which was only used in test...Gravatar Janak Ramakrishnan2016-02-11
* Support for handling TreeArtifact metadata and returning TreeArtifacts from A...Gravatar Michael Thvedt2016-02-09
* Don't check direct deps when doing change pruning. Since dependents of a node...Gravatar Janak Ramakrishnan2016-02-09
* Parallelize top-level invalidation. No need to do all of these in sequence.Gravatar Eric Fellheimer2016-01-29
* Parallelize Package retrieval during Sky-query operation. To maintain type-sa...Gravatar Eric Fellheimer2016-01-29
* Intern IntVersions.Gravatar Janak Ramakrishnan2016-01-28
* Fix SkyframeBuilder's error handling, and change the contract of EvaluationRe...Gravatar Janak Ramakrishnan2016-01-28
* Allow opaque OptionsClassProvider to be passed around in BuildDriver#meta et ...Gravatar Nathan Harmata2016-01-20
* Skyfunctions can now catch up to five exceptions.Gravatar John Field2016-01-15
* Stop filtering out targets not in the graph in SkyQueryEnvironment. Instead, ...Gravatar Janak Ramakrishnan2016-01-15
* Include the new 'catastrophe' field in EvaluationResult.mergeFrom().Gravatar Googler2016-01-14
* Use AutoProfiler in SkyQueryEnvironment#init. Also augment the WalkableGraphF...Gravatar Nathan Harmata2016-01-14
* Add the ability to customize the bazel client's exit code used when the bazel...Gravatar Nathan Harmata2016-01-08
* In SkyQueryEnvironment, don't silently give up when there's a cycle in the gr...Gravatar Janak Ramakrishnan2016-01-07
* Add catastrophe field to EvaluationResult so that callers can identify the ca...Gravatar Janak Ramakrishnan2016-01-04
* Clarify the message of the exception thrown when a .getValue() calls returns ...Gravatar Lukacs Berki2015-12-13
* Use Bazel Preconditions variant which avoids varargs array creationGravatar Mark Schaller2015-12-10
* Repurpose the not-meaningfully-used ErrorInfo#isTransient to mean "is transit...Gravatar Nathan Harmata2015-12-10
* Avoid list copy in BuildingState.getNextDirtyDirectDepsGravatar Mark Schaller2015-12-09
* Track changed and dirtied keys separately during invalidationGravatar Mark Schaller2015-11-30
* Avoid low-value boxing of ints in BuildingStateGravatar Mark Schaller2015-11-30
* Make support for interruptibility optional during dirtyingGravatar Mark Schaller2015-11-25
* Avoid extra rdeps copy when finishing nodeGravatar Mark Schaller2015-11-24