revsetbenchmarks.txt
33 lines
| 676 B
| text/plain
|
TextLexer
/ contrib / revsetbenchmarks.txt
Pierre-Yves David
|
r20777 | all() | ||
Lucas Moscovicz
|
r20744 | draft() | ||
Pierre-Yves David
|
r20777 | ::tip | ||
Lucas Moscovicz
|
r20744 | draft() and ::tip | ||
Pierre-Yves David
|
r21285 | ::tip and draft() | ||
Pierre-Yves David
|
r20777 | 0::tip | ||
Lucas Moscovicz
|
r20744 | roots(0::tip) | ||
author(lmoscovicz) | ||||
Pierre-Yves David
|
r20777 | author(mpm) | ||
Lucas Moscovicz
|
r20744 | author(lmoscovicz) or author(mpm) | ||
Pierre-Yves David
|
r21295 | author(mpm) or author(lmoscovicz) | ||
Pierre-Yves David
|
r20777 | tip:0 | ||
Lucas Moscovicz
|
r20754 | max(tip:0) | ||
min(0:tip) | ||||
Pierre-Yves David
|
r20777 | 0:: | ||
Lucas Moscovicz
|
r20754 | min(0::) | ||
Pierre-Yves David
|
r22556 | # those two `roots(...)` inputs are close to what phase movement use. | ||
Durham Goode
|
r20894 | roots((tip~100::) - (tip~100::tip)) | ||
Pierre-Yves David
|
r22556 | roots((0::) - (0::tip)) | ||
Pierre-Yves David
|
r24923 | 42:68 and roots(42:tip) | ||
Gregory Szorc
|
r20861 | ::p1(p1(tip)):: | ||
Pierre-Yves David
|
r21204 | public() | ||
:10000 and public() | ||||
draft() | ||||
:10000 and draft() | ||||
Pierre-Yves David
|
r21546 | max(::(tip~20) - obsolete()) | ||
Gregory Szorc
|
r21939 | roots((0:tip)::) | ||
Gregory Szorc
|
r22312 | (not public() - obsolete()) | ||
Durham Goode
|
r22451 | (_intlist('20000\x0020001')) and merge() | ||
Durham Goode
|
r22450 | parents(20000) | ||
Durham Goode
|
r22449 | (20000::) - (20000) | ||
Pierre-Yves David
|
r22557 | # The one below is used by rebase | ||
(children(ancestor(tip~5, tip)) and ::(tip~5)):: | ||||