Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: appengine/swarming/proto/config.proto

Issue 2013943002: Changing license header, again! (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Fixed third parties Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « appengine/swarming/proto/Makefile ('k') | appengine/swarming/remote_smoke_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The LUCI Authors. All rights reserved. 1 // Copyright 2016 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed by the Apache v2.0 license that can be 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 // Schema for settings.cfg service config file in luci-config. 7 // Schema for settings.cfg service config file in luci-config.
8 message SettingsCfg { 8 message SettingsCfg {
9 // id to inject into pages if applicable. 9 // id to inject into pages if applicable.
10 optional string google_analytics = 1; 10 optional string google_analytics = 1;
11 11
12 // The number of seconds an old task can be deduped from. 12 // The number of seconds an old task can be deduped from.
13 optional int32 reusable_task_age_secs = 2; 13 optional int32 reusable_task_age_secs = 2;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 message CipdSettings { 52 message CipdSettings {
53 // URL of the default CIPD server to use if it is not specified in a task. 53 // URL of the default CIPD server to use if it is not specified in a task.
54 // Must start with "https://" or "http://", 54 // Must start with "https://" or "http://",
55 // e.g. "https://chrome-infra-packages.appspot.com". 55 // e.g. "https://chrome-infra-packages.appspot.com".
56 optional string default_server = 1; 56 optional string default_server = 1;
57 57
58 // Package of the default CIPD client to use if it is not specified in a 58 // Package of the default CIPD client to use if it is not specified in a
59 // task. 59 // task.
60 optional CipdPackage default_client_package = 2; 60 optional CipdPackage default_client_package = 2;
61 } 61 }
OLDNEW
« no previous file with comments | « appengine/swarming/proto/Makefile ('k') | appengine/swarming/remote_smoke_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698