HomeSort by relevance Sort by last modified time
    Searched refs:CUMULATIVE (Results 1 - 16 of 16) sorted by null

  /external/opencensus-java/api/src/test/java/io/opencensus/stats/
NoopViewManagerTest.java 25 import io.opencensus.stats.View.AggregationWindow.Cumulative;
48 private static final Cumulative CUMULATIVE = Cumulative.create();
58 VIEW_NAME, "description 1", MEASURE, AGGREGATION, Arrays.asList(KEY), CUMULATIVE);
61 VIEW_NAME, "description 2", MEASURE, AGGREGATION, Arrays.asList(KEY), CUMULATIVE);
78 VIEW_NAME, VIEW_DESCRIPTION, MEASURE, AGGREGATION, Arrays.asList(KEY), CUMULATIVE);
101 VIEW_NAME, VIEW_DESCRIPTION, MEASURE, AGGREGATION, Arrays.asList(KEY), CUMULATIVE);
146 CUMULATIVE);
154 CUMULATIVE);
    [all...]
ViewDataTest.java 40 import io.opencensus.stats.View.AggregationWindow.Cumulative;
65 View view = View.create(NAME, DESCRIPTION, MEASURE_DOUBLE, DISTRIBUTION, TAG_KEYS, CUMULATIVE);
90 View.create(NAME, DESCRIPTION, MEASURE_DOUBLE, DISTRIBUTION, TAG_KEYS, CUMULATIVE);
183 View.create(NAME, DESCRIPTION, MEASURE_DOUBLE, DISTRIBUTION, TAG_KEYS, CUMULATIVE),
247 return View.create(NAME, DESCRIPTION, measure, aggregation, TAG_KEYS, CUMULATIVE);
277 private static final AggregationWindow CUMULATIVE = Cumulative.create();
  /external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
MeasureToViewMapTest.java 26 import io.opencensus.stats.View.AggregationWindow.Cumulative;
46 private static final Cumulative CUMULATIVE = Cumulative.create();
55 CUMULATIVE);
ViewManagerImplTest.java 47 import io.opencensus.stats.View.AggregationWindow.Cumulative;
100 private static final Cumulative CUMULATIVE = Cumulative.create();
133 return View.create(name, VIEW_DESCRIPTION, measure, aggregation, keys, CUMULATIVE);
166 // Only cumulative views should be exported.
179 CUMULATIVE);
190 CUMULATIVE);
228 CUMULATIVE);
236 CUMULATIVE);
    [all...]
  /external/opencensus-java/contrib/grpc_metrics/src/main/java/io/opencensus/contrib/grpc/metrics/
RpcViewConstants.java 148 static final View.AggregationWindow CUMULATIVE = View.AggregationWindow.Cumulative.create();
157 // Rpc client cumulative views.
160 * Cumulative {@link View} for client RPC errors.
168 View.Name.create("grpc.io/client/error_count/cumulative"),
173 CUMULATIVE);
176 * Cumulative {@link View} for client roundtrip latency in milliseconds.
184 View.Name.create("grpc.io/client/roundtrip_latency/cumulative"),
189 CUMULATIVE);
192 * Cumulative {@link View} for client server elapsed time in milliseconds
    [all...]
  /external/opencensus-java/exporters/stats/prometheus/src/test/java/io/opencensus/exporter/stats/prometheus/
PrometheusExportUtilsTest.java 44 import io.opencensus.stats.View.AggregationWindow.Cumulative;
69 private static final Cumulative CUMULATIVE = Cumulative.create();
102 VIEW_NAME_1, DESCRIPTION, MEASURE_DOUBLE, COUNT, Arrays.asList(K1, K2), CUMULATIVE);
104 View.create(VIEW_NAME_2, DESCRIPTION, MEASURE_DOUBLE, MEAN, Arrays.asList(K3), CUMULATIVE);
107 VIEW_NAME_3, DESCRIPTION, MEASURE_DOUBLE, DISTRIBUTION, Arrays.asList(K1), CUMULATIVE);
117 CUMULATIVE);
134 assertThat(PrometheusExportUtils.getType(COUNT, CUMULATIVE)).isEqualTo(Type.COUNTER);
135 assertThat(PrometheusExportUtils.getType(DISTRIBUTION, CUMULATIVE)).isEqualTo(Type.HISTOGRAM)
    [all...]
PrometheusStatsCollectorTest.java 32 import io.opencensus.stats.View.AggregationWindow.Cumulative;
54 private static final Cumulative CUMULATIVE = Cumulative.create();
71 VIEW_NAME, DESCRIPTION, MEASURE_DOUBLE, DISTRIBUTION, Arrays.asList(K1, K2), CUMULATIVE);
79 CUMULATIVE);
  /external/opencensus-java/exporters/stats/stackdriver/src/test/java/io/opencensus/exporter/stats/stackdriver/
StackdriverExportUtilsTest.java 54 import io.opencensus.stats.View.AggregationWindow.Cumulative;
92 private static final Cumulative CUMULATIVE = Cumulative.create();
125 assertThat(StackdriverExportUtils.createMetricKind(CUMULATIVE, SUM))
126 .isEqualTo(MetricKind.CUMULATIVE);
129 assertThat(StackdriverExportUtils.createMetricKind(CUMULATIVE, LAST_VALUE))
179 CUMULATIVE);
200 CUMULATIVE);
220 CUMULATIVE);
    [all...]
StackdriverExporterWorkerTest.java 47 import io.opencensus.stats.View.AggregationWindow.Cumulative;
81 private static final Cumulative CUMULATIVE = Cumulative.create();
121 View.create(VIEW_NAME, VIEW_DESCRIPTION, MEASURE, SUM, Arrays.asList(KEY), CUMULATIVE);
168 View.create(VIEW_NAME, VIEW_DESCRIPTION, MEASURE, SUM, Arrays.asList(KEY), CUMULATIVE);
194 View.create(VIEW_NAME, VIEW_DESCRIPTION, MEASURE, SUM, Arrays.asList(KEY), CUMULATIVE);
223 View.create(VIEW_NAME, VIEW_DESCRIPTION, MEASURE, SUM, Arrays.asList(KEY), CUMULATIVE);
234 CUMULATIVE);
250 View.create(VIEW_NAME, VIEW_DESCRIPTION, MEASURE, SUM, Arrays.asList(KEY), CUMULATIVE);
    [all...]
  /external/opencensus-java/api/src/main/java/io/opencensus/stats/
View.java 100 * @deprecated since 0.13. In the future all {@link View}s will be cumulative.
157 name, description, measure, aggregation, columns, AggregationWindow.Cumulative.create());
202 * @deprecated since 0.13. In the future all {@link View}s will be cumulative.
216 Function<? super Cumulative, T> p0,
221 * Cumulative (infinite interval) time {@code AggregationWindow}.
224 * @deprecated since 0.13. In the future all {@link View}s will be cumulative.
230 public abstract static class Cumulative extends AggregationWindow {
232 private static final Cumulative CUMULATIVE =
235 Cumulative() {}
    [all...]
  /external/opencensus-java/contrib/grpc_metrics/src/test/java/io/opencensus/contrib/grpc/metrics/
RpcViewConstantsTest.java 26 import io.opencensus.stats.View.AggregationWindow.Cumulative;
89 assertThat(RpcViewConstants.CUMULATIVE).isEqualTo(Cumulative.create());
  /external/mesa3d/src/gallium/drivers/r600/
r600_query.c     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
r600_query.c     [all...]
  /external/opencensus-java/exporters/stats/stackdriver/src/main/java/io/opencensus/exporter/stats/stackdriver/
StackdriverExportUtils.java 120 Functions.returnConstant(MetricKind.CUMULATIVE);
207 if (!(view.getWindow() instanceof View.AggregationWindow.Cumulative)) {
208 // TODO(songya): Only Cumulative view will be exported to Stackdriver in this version.
263 METRIC_KIND_CUMULATIVE_FUNCTION, // Cumulative
308 if (!(view.getWindow() instanceof View.AggregationWindow.Cumulative)) {
309 // TODO(songya): Only Cumulative view will be exported to Stackdriver in this version.
  /external/python/cpython3/Lib/
pstats.py 36 CUMULATIVE = 'cumulative', 'cumtime'
75 'stdname', 'calls', 'time', and 'cumulative'). It takes either an
186 "cumtime" : (((3,-1), ), "cumulative time"),
187 "cumulative": (((3,-1), ), "cumulative time"),
227 2: "cumulative"}[field[0]] ]
  /external/python/apitools/samples/servicemanagement_sample/servicemanagement_v1/
servicemanagement_v1_messages.py     [all...]

Completed in 937 milliseconds