aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/skyframe/MemoizingEvaluatorTest.java
Commit message (Expand)AuthorAge
* Filter out events from analysis when constructing execution-phase values in S...Gravatar janakr2018-08-14
* Refactoring of SkyFunctionEnvironment to iterate over events/postables only w...Gravatar janakr2018-08-10
* PiperOrigin-RevId: 205308422Gravatar shahan2018-07-19
* Set the version of a computed node to the max of its child versions rather th...Gravatar janakr2018-07-11
* Native Skyframe support for node restartingGravatar mschaller2018-07-01
* Add new BuildMetrics event to BEP.Gravatar tomlu2018-06-19
* Remove ConfiguredTarget from TargetCompletionValue, since it is no longer nee...Gravatar janakr2018-06-04
* Potentially allow children of a dirty node to be missing from the graph. Also...Gravatar janakr2018-05-15
* Allow SkyFunctions to return a sentinel value indicating that all of a node's...Gravatar janakr2018-04-30
* Replace LegacySkyKey by AbstractSkyKey or custom SkyKeys. AbstractSkyKey does...Gravatar janakr2018-03-02
* Expose SimpleCycleDetector. Also, allow MemoizingEvaluatorTest to support ev...Gravatar cpeyser2018-02-26
* Automated rollback of commit 7fe59b98eefc96a6310f0b0221d4e0f18e2a9000.Gravatar shreyax2018-02-23
* Automated rollback of commit cce164aed44aba1de244f0d764cd33a5cc6980b2.Gravatar fwe2018-02-19
* Re-use previously computed deps for TransitiveBaseTraversalFunction#compute i...Gravatar shreyax2018-02-16
* Fix bug where an was-inflight-and-is-about-to-be-done NodeEntry has incomplet...Gravatar nharmata2018-01-18
* Put more information in failure message of occasionally flaky test, and dedup...Gravatar janakr2017-11-22
* Clear interrupted bit in thread when throwing an interrupted exception that c...Gravatar janakr2017-11-21
* Replace all usages of Blaze's Preconditions class with guava.Gravatar tomlu2017-11-09
* Allow NodeEntry implementations to keep just deps, as opposed to all edges or...Gravatar janakr2017-10-10
* Automatic code cleanup.Gravatar cushon2017-09-15
* Add an Iterable<Event> Truth subject so that we can easily assert things on a...Gravatar janakr2017-07-24
* Tolerate injected nodes having deps.Gravatar janakr2017-07-21
* Give MemoizingEvaluatorTest subclasses a bit more control over how transient ...Gravatar nharmata2017-06-19
* A bunch of unrelated cleanups:Gravatar nharmata2017-06-16
* Remove all imports of org.junit.Assert except for static imports of #fail().Gravatar lberki2017-06-01
* Migrate most of the assertions to Truth that the auto-migration tool did not ...Gravatar lberki2017-05-31
* Migrate Java tests to Truth.Gravatar lberki2017-05-30
* Fixes incorrectly-ordered arguments to calls to assertEqualsGravatar Googler2017-05-19
* Make SkyKey an interface, and start the migration of not creating SkyKey wrap...Gravatar janakr2017-05-04
* Provide more reporting options to SkyFunctions Gravatar Klaus Aehlig2017-02-27
* Fixed EvaluationProgressReceiver object namesGravatar Googler2016-09-27
* Make MemoizingEvaluatorTest#nodeInvalidatedThenDoubleCycle a bit more complete.Gravatar Janak Ramakrishnan2016-09-01
* Allow cycle detector to be injected into ParallelEvaluator, so that callers c...Gravatar Janak Ramakrishnan2016-08-26
* Refactor ParallelEvaluator in preparation for making it more modular with res...Gravatar Janak Ramakrishnan2016-08-26
* Allow Skyframe graph lookups and value retrievals to throw InterruptedException.Gravatar Janak Ramakrishnan2016-08-16
* Fix bug in ParallelEvaluator when an error dep was not newly requested in a n...Gravatar Janak Ramakrishnan2016-08-11
* Refactor QueryableGraph and ThinNodeQueryableGraph to be independent interfac...Gravatar Janak Ramakrishnan2016-07-11
* Filter out already-removed deps when removing a node from the rdeps of its la...Gravatar Janak Ramakrishnan2016-07-04
* Minor improvement to cycle detection algorithm: Do not recurse into done node...Gravatar Eric Fellheimer2016-06-21
* 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 MemoizingEvaluatorTest#breakCycle to check that we have correct behavior ...Gravatar Janak Ramakrishnan2016-05-11
* Fix keep-going build with an existing cycle by only setting errorDepKey in a ...Gravatar Janak Ramakrishnan2016-03-29
* Clean up some testing code: @Before methods' call order is unspecified, so we...Gravatar Janak Ramakrishnan2016-03-28
* Use static creation method for SkyKey. This allows interning SkyKeys as they ...Gravatar Janak Ramakrishnan2016-03-03
* Prevent new evaluations from starting if a done child's error is discovered. ...Gravatar Janak Ramakrishnan2016-02-23
* Allow ParallelEvaluator to not store errors alongside values if nodes recover...Gravatar Janak Ramakrishnan2016-02-11
* Use Bazel Preconditions variant which avoids varargs array creationGravatar Mark Schaller2015-12-10