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

Side by Side Diff: pkg/analysis_server/lib/src/analysis_server.dart

Issue 959543005: Measure time spent running pub (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/context_manager.dart » ('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 (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library analysis.server; 5 library analysis.server;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection'; 8 import 'dart:collection';
9 import 'dart:math' show max; 9 import 'dart:math' show max;
10 10
(...skipping 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1350 */ 1350 */
1351 static PerformanceTag idle = new PerformanceTag('idle'); 1351 static PerformanceTag idle = new PerformanceTag('idle');
1352 1352
1353 /** 1353 /**
1354 * The [PerformanceTag] for time spent in 1354 * The [PerformanceTag] for time spent in
1355 * PerformAnalysisOperation._sendNotices. 1355 * PerformAnalysisOperation._sendNotices.
1356 */ 1356 */
1357 static PerformanceTag notices = new PerformanceTag('notices'); 1357 static PerformanceTag notices = new PerformanceTag('notices');
1358 1358
1359 /** 1359 /**
1360 * The [PerformanceTag] for time spent running pub.
1361 */
1362 static PerformanceTag pub = new PerformanceTag('pub');
1363
1364 /**
1360 * The [PerformanceTag] for time spent in server comminication channels. 1365 * The [PerformanceTag] for time spent in server comminication channels.
1361 */ 1366 */
1362 static PerformanceTag serverChannel = new PerformanceTag('serverChannel'); 1367 static PerformanceTag serverChannel = new PerformanceTag('serverChannel');
1363 1368
1364 /** 1369 /**
1365 * The [PerformanceTag] for time spent in server request handlers. 1370 * The [PerformanceTag] for time spent in server request handlers.
1366 */ 1371 */
1367 static PerformanceTag serverRequests = new PerformanceTag('serverRequests'); 1372 static PerformanceTag serverRequests = new PerformanceTag('serverRequests');
1368 1373
1369 /** 1374 /**
1370 * The [PerformanceTag] for time spent in split store microtasks. 1375 * The [PerformanceTag] for time spent in split store microtasks.
1371 */ 1376 */
1372 static PerformanceTag splitStore = new PerformanceTag('splitStore'); 1377 static PerformanceTag splitStore = new PerformanceTag('splitStore');
1373 } 1378 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/context_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698