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

Side by Side Diff: appengine/third_party/gae_ts_mon/__init__.py

Issue 2013943002: Changing license header, again! (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # that can be found in the LICENSE file.
4 4
5 import google # provided by GAE 5 import google # provided by GAE
6 import imp 6 import imp
7 import os 7 import os
8 import sys 8 import sys
9 9
10 # Adds third_party to sys.path so the packages inside work. Do not 10 # Adds third_party to sys.path so the packages inside work. Do not
11 # import third_party directly - it mysteriously flakes on GAE under 11 # import third_party directly - it mysteriously flakes on GAE under
12 # heavy load. 12 # heavy load.
13 third_party_dir = os.path.join(os.path.dirname(__file__), 'third_party') 13 third_party_dir = os.path.join(os.path.dirname(__file__), 'third_party')
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 from infra_libs.ts_mon.common.metrics import CumulativeDistributionMetric 67 from infra_libs.ts_mon.common.metrics import CumulativeDistributionMetric
68 from infra_libs.ts_mon.common.metrics import CumulativeMetric 68 from infra_libs.ts_mon.common.metrics import CumulativeMetric
69 from infra_libs.ts_mon.common.metrics import DistributionMetric 69 from infra_libs.ts_mon.common.metrics import DistributionMetric
70 from infra_libs.ts_mon.common.metrics import FloatMetric 70 from infra_libs.ts_mon.common.metrics import FloatMetric
71 from infra_libs.ts_mon.common.metrics import GaugeMetric 71 from infra_libs.ts_mon.common.metrics import GaugeMetric
72 from infra_libs.ts_mon.common.metrics import NonCumulativeDistributionMetric 72 from infra_libs.ts_mon.common.metrics import NonCumulativeDistributionMetric
73 from infra_libs.ts_mon.common.metrics import StringMetric 73 from infra_libs.ts_mon.common.metrics import StringMetric
74 74
75 from infra_libs.ts_mon.common.targets import TaskTarget 75 from infra_libs.ts_mon.common.targets import TaskTarget
76 from infra_libs.ts_mon.common.targets import DeviceTarget 76 from infra_libs.ts_mon.common.targets import DeviceTarget
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698