Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • willsalmon/buildstream
  • CumHoleZH/buildstream
  • tchaik/buildstream
  • DCotyPortfolio/buildstream
  • jesusoctavioas/buildstream
  • patrickmmartin/buildstream
  • franred/buildstream
  • tintou/buildstream
  • alatiera/buildstream
  • martinblanchard/buildstream
  • neverdie22042524/buildstream
  • Mattlk13/buildstream
  • PServers/buildstream
  • phamnghia610909/buildstream
  • chiaratolentino/buildstream
  • eysz7-x-x/buildstream
  • kerrick1/buildstream
  • matthew-yates/buildstream
  • twofeathers/buildstream
  • mhadjimichael/buildstream
  • pointswaves/buildstream
  • Mr.JackWilson/buildstream
  • Tw3akG33k/buildstream
  • AlexFazakas/buildstream
  • eruidfkiy/buildstream
  • clamotion2/buildstream
  • nanonyme/buildstream
  • wickyjaaa/buildstream
  • nmanchev/buildstream
  • bojorquez.ja/buildstream
  • mostynb/buildstream
  • highpit74/buildstream
  • Demo112/buildstream
  • ba2014sheer/buildstream
  • tonimadrino/buildstream
  • usuario2o/buildstream
  • Angelika123456/buildstream
  • neo355/buildstream
  • corentin-ferlay/buildstream
  • coldtom/buildstream
  • wifitvbox81/buildstream
  • 358253885/buildstream
  • seanborg/buildstream
  • SotK/buildstream
  • DouglasWinship/buildstream
  • karansthr97/buildstream
  • louib/buildstream
  • bwh-ct/buildstream
  • robjh/buildstream
  • we88c0de/buildstream
  • zhengxian5555/buildstream
51 results
Show changes
Commits on Source (2)
...@@ -29,7 +29,7 @@ class PullQueue(Queue): ...@@ -29,7 +29,7 @@ class PullQueue(Queue):
action_name = "Pull" action_name = "Pull"
complete_name = "Pulled" complete_name = "Pulled"
resources = [ResourceType.UPLOAD] resources = [ResourceType.DOWNLOAD]
def process(self, element): def process(self, element):
# returns whether an artifact was downloaded or not # returns whether an artifact was downloaded or not
......
...@@ -35,13 +35,13 @@ cache: ...@@ -35,13 +35,13 @@ cache:
# #
scheduler: scheduler:
# Maximum number of simultaneous source downloading tasks. # Maximum number of simultaneous downloading tasks.
fetchers: 10 fetchers: 10
# Maximum number of simultaneous build tasks. # Maximum number of simultaneous build tasks.
builders: 4 builders: 4
# Maximum number of simultaneous artifact uploading tasks. # Maximum number of simultaneous uploading tasks.
pushers: 4 pushers: 4
# Maximum number of retries for network tasks. # Maximum number of retries for network tasks.
......