/external/autotest/frontend/tko/preconfigs/metrics/ |
D | perf | 8 aggregation[0]: AVG 17 aggregation[1]: AVG 26 aggregation[2]: AVG 35 aggregation[3]: AVG 44 aggregation[4]: AVG 59 aggregation[0]: AVG 68 aggregation[1]: AVG 77 aggregation[2]: AVG 86 aggregation[3]: AVG 95 aggregation[4]: AVG [all …]
|
D | kernel_compare | 12 aggregation[0]: AVG 19 aggregation[1]: AVG 35 aggregation[0]: AVG 42 aggregation[1]: AVG 58 aggregation[0]: AVG 65 aggregation[1]: AVG
|
/external/opencensus-java/api/src/main/java/io/opencensus/stats/ |
D | ViewData.java | 245 final Aggregation aggregation, final AggregationData aggregationData, final Measure measure) { 246 aggregation.match( 255 aggregationData instanceof SumDataDouble, aggregation, aggregationData); 263 aggregationData instanceof SumDataLong, aggregation, aggregationData); 275 aggregationData instanceof CountData, aggregation, aggregationData); 283 aggregationData instanceof DistributionData, aggregation, aggregationData); 296 aggregation, 305 aggregationData instanceof LastValueDataLong, aggregation, aggregationData); 322 aggregation, 332 boolean isValid, Aggregation aggregation, AggregationData aggregationData) { [all …]
|
D | View.java | 124 Aggregation aggregation, in create() argument 133 name, description, measure, aggregation, Collections.unmodifiableList(tagKeys), window); in create() 152 Aggregation aggregation, in create() argument 157 name, description, measure, aggregation, columns, AggregationWindow.Cumulative.create()); in create()
|
/external/autotest/frontend/client/src/autotest/tko/ |
D | SeriesSelector.java | 43 private ExtendedListBox aggregation = new ExtendedListBox(); field in SeriesSelector.Series 61 aggregation.addItem("AVG", "AVG("); in Series() 62 aggregation.addItem("COUNT (DISTINCT)", "COUNT(DISTINCT "); in Series() 63 aggregation.addItem("MIN", "MIN("); in Series() 64 aggregation.addItem("MAX", "MAX("); in Series() 65 aggregation.setSelectedIndex(0); in Series() 66 aggregation.addChangeHandler(new ChangeHandler() { in Series() 80 aggregationPanel.add(aggregation); in Series() 108 return aggregation.getSelectedValue(); in getAggregation() 134 args.put(parameterString("aggregation", index), aggregation.getSelectedName()); in addToHistory() [all …]
|
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/ |
D | IntervalBucket.java | 42 private final Aggregation aggregation; field in IntervalBucket 47 IntervalBucket(Timestamp start, Duration duration, Aggregation aggregation, Measure measure) { in IntervalBucket() argument 51 this.aggregation = checkNotNull(aggregation, "Aggregation"); in IntervalBucket() 71 tagValues, RecordUtils.createMutableAggregation(aggregation, measure)); in record()
|
D | MutableViewData.java | 354 Aggregation aggregation = super.view.getAggregation(); in combineBucketsAndGetAggregationMap() local 356 putBucketsIntoMultiMap(shallowCopy, multimap, aggregation, measure, now); in combineBucketsAndGetAggregationMap() 358 aggregateOnEachTagValueList(multimap, aggregation, measure); in combineBucketsAndGetAggregationMap() 367 Aggregation aggregation, in putBucketsIntoMultiMap() argument 380 head.getTagValueAggregationMap(), multimap, aggregation, measure, fractionHead); in putBucketsIntoMultiMap() local 400 Aggregation aggregation, in putFractionalMutableAggregationsToMultiMap() argument 405 MutableAggregation fractionalMutableAgg = createMutableAggregation(aggregation, measure); in putFractionalMutableAggregationsToMultiMap() 414 Multimap<T, MutableAggregation> multimap, Aggregation aggregation, Measure measure) { in aggregateOnEachTagValueList() argument 418 MutableAggregation combinedAggregation = createMutableAggregation(aggregation, measure); in aggregateOnEachTagValueList()
|
/external/opencensus-java/exporters/stats/stackdriver/src/main/java/io/opencensus/exporter/stats/stackdriver/ |
D | StackdriverExportUtils.java | 258 static MetricKind createMetricKind(View.AggregationWindow window, Aggregation aggregation) { in createMetricKind() argument 259 if (aggregation instanceof LastValue) { in createMetricKind() 271 static String createUnit(Aggregation aggregation, final Measure measure) { in createUnit() argument 272 if (aggregation instanceof Aggregation.Count) { in createUnit() 281 Aggregation aggregation, final Measure measure) { in createValueType() argument 282 return aggregation.match( in createValueType() 360 Aggregation aggregation) { in createPoint() argument 362 builder.setInterval(createTimeInterval(windowData, aggregation)); in createPoint() 363 builder.setValue(createTypedValue(aggregation, aggregationData)); in createPoint() 370 ViewData.AggregationWindowData windowData, final Aggregation aggregation) { in createTimeInterval() argument [all …]
|
/external/tensorflow/tensorflow/python/ops/ |
D | variable_scope.py | 299 aggregation=VariableAggregation.NONE): argument 450 aggregation=VariableAggregation.NONE): argument 475 aggregation=aggregation) 496 aggregation=aggregation) 519 aggregation=aggregation) 543 "aggregation": aggregation, 567 aggregation=aggregation) 584 aggregation=VariableAggregation.NONE): argument 783 aggregation=aggregation) 815 aggregation=VariableAggregation.NONE): argument [all …]
|
D | variables.py | 152 aggregation=VariableAggregation.NONE): argument 159 if aggregation is None: 160 aggregation = VariableAggregation.NONE 175 aggregation=aggregation) 188 aggregation=VariableAggregation.NONE): argument 195 if aggregation is None: 196 aggregation = VariableAggregation.NONE 208 aggregation=aggregation) 348 aggregation=VariableAggregation.NONE): argument 1285 aggregation=VariableAggregation.NONE): argument
|
/external/tensorflow/tensorflow/python/distribute/ |
D | reduce_util.py | 43 def from_variable_aggregation(aggregation): argument 49 reduce_op = mapping.get(aggregation) 52 "`tf.distribute.ReduceOp` type" % aggregation)
|
D | distribute_lib_test.py | 35 def _get_test_variable(name, synchronization, aggregation): argument 39 "aggregation": aggregation 125 aggregation=variable_scope.VariableAggregation.MEAN))
|
D | values.py | 623 def _apply_aggregation(strategy, value, aggregation, destinations): argument 624 if aggregation == vs.VariableAggregation.ONLY_FIRST_REPLICA: 628 reduce_op = reduce_util.ReduceOp.from_variable_aggregation(aggregation) 652 self, strategy, device_map, values, aggregation, logical_device=None): argument 655 self._aggregation = aggregation 711 def aggregation(self): member in MirroredVariable 774 self, strategy, device_map, values, aggregation, logical_device=None): argument 788 self._aggregation = aggregation 1047 def aggregation(self): member in TPUMirroredVariable 1232 self, strategy, device_map, values, aggregation, logical_device=None): argument [all …]
|
/external/tcpdump/tests/ |
D | lldp_mudurl-v.out | 21 Link aggregation Subtype (3) 22 aggregation status [supported], aggregation port ID 0 52 Link aggregation Subtype (3) 53 aggregation status [supported], aggregation port ID 0
|
D | lldp_mudurl-vv.out | 37 Link aggregation Subtype (3) 38 aggregation status [supported], aggregation port ID 0 90 Link aggregation Subtype (3) 91 aggregation status [supported], aggregation port ID 0
|
/external/opencensus-java/exporters/stats/signalfx/src/main/java/io/opencensus/exporter/stats/signalfx/ |
D | SignalFxSessionAdaptor.java | 91 Aggregation aggregation, View.AggregationWindow window) { in getMetricTypeForAggregation() argument 92 if (aggregation instanceof Aggregation.Mean || aggregation instanceof Aggregation.LastValue) { in getMetricTypeForAggregation() 94 } else if (aggregation instanceof Aggregation.Count || aggregation instanceof Aggregation.Sum) { in getMetricTypeForAggregation()
|
/external/tensorflow/tensorflow/contrib/distribute/python/ |
D | mirrored_strategy_multigpu_test.py | 438 v0 = variable_scope.variable(1.0, name="var0", aggregation=None) 447 aggregation=variable_scope.VariableAggregation.SUM) 452 aggregation=variable_scope.VariableAggregation.MEAN) 469 self.assertEqual(variable_scope.VariableAggregation.SUM, v2.aggregation) 472 self.assertEqual(variable_scope.VariableAggregation.MEAN, v3.aggregation) 484 aggregation=variable_scope.VariableAggregation.SUM) 488 aggregation=variable_scope.VariableAggregation.MEAN) 507 v2.aggregation) 511 v3.aggregation) 515 aggregation = variable_scope.VariableAggregation.ONLY_FIRST_REPLICA [all …]
|
D | parameter_server_strategy_test.py | 182 aggregation=variable_scope.VariableAggregation.SUM) 196 aggregation=variable_scope.VariableAggregation.SUM) 206 aggregation=variable_scope.VariableAggregation.SUM) 265 aggregation=variable_scope.VariableAggregation.SUM, 278 aggregation=variable_scope.VariableAggregation.SUM, 338 aggregation=variable_scope.VariableAggregation.SUM) 350 aggregation=variable_scope.VariableAggregation.SUM) 361 aggregation=variable_scope.VariableAggregation.SUM) 423 aggregation=variable_scope.VariableAggregation.SUM) 426 aggregation=variable_scope.VariableAggregation.SUM) [all …]
|
/external/tensorflow/tensorflow/lite/python/ |
D | op_hint.py | 545 def __init__(self, aggregation): argument 547 self.aggregation = aggregation 565 if self.aggregation == OpHint.AGGREGATE_FIRST: 567 elif self.aggregation == OpHint.AGGREGATE_LAST: 569 elif self.aggregation == OpHint.AGGREGATE_STACK: 573 "Invalid aggregation type %r specified" % self.aggregation) 651 s = "\t\t\tAGGREGATE %s\n" % self.aggregation 746 aggregation = None 748 aggregation = _compat.as_text(attr[OpHint.FUNCTION_AGGREGATE_ATTR].s) 755 def put_operand(stuff, index, sort, operand, aggregation): argument [all …]
|
/external/opencensus-java/api/src/test/java/io/opencensus/stats/ |
D | ViewDataTest.java | 242 private static View createView(Aggregation aggregation) { in createView() argument 243 return createView(aggregation, MEASURE_DOUBLE); in createView() 246 private static View createView(Aggregation aggregation, Measure measure) { in createView() argument 247 return View.create(NAME, DESCRIPTION, measure, aggregation, TAG_KEYS, CUMULATIVE); in createView() 254 Aggregation aggregation = view.getAggregation(); in aggregationAndAggregationDataMismatch() local 260 + aggregation.getClass().getSimpleName() in aggregationAndAggregationDataMismatch()
|
/external/tensorflow/tensorflow/lite/models/smartreply/ops/ |
D | predict.cc | 124 std::unordered_map<int32_t, float> aggregation; in Eval() local 136 aggregation[model_label->data.i32[idx * items + j]] += in Eval() 143 std::vector<std::pair<int32_t, float>> sorted_labels(aggregation.begin(), in Eval() 144 aggregation.end()); in Eval()
|
/external/tensorflow/tensorflow/contrib/framework/python/ops/ |
D | variables.py | 216 aggregation=variables.VariableAggregation.NONE): argument 277 aggregation=aggregation) 294 aggregation=variables.VariableAggregation.NONE): argument 350 aggregation=aggregation)
|
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/ |
D | MutableAggregationTest.java | 123 for (MutableAggregation aggregation : aggregations) { in testAdd() 124 aggregation.add(value, Collections.<String, String>emptyMap(), TIMESTAMP); in testAdd() 212 for (MutableAggregation aggregation : aggregations1) { in testCombine_SumCountMean() 213 aggregation.add(val, Collections.<String, String>emptyMap(), TIMESTAMP); in testCombine_SumCountMean() 217 for (MutableAggregation aggregation : aggregations2) { in testCombine_SumCountMean() 218 aggregation.add(val, Collections.<String, String>emptyMap(), TIMESTAMP); in testCombine_SumCountMean()
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | base_layer.py | 271 aggregation=tf_variables.VariableAggregation.NONE, argument 378 aggregation=aggregation) 813 def add_metric(self, value, aggregation=None, name=None): argument 830 if aggregation is not None and aggregation != 'mean': 833 'You provided aggregation=`%s`' % aggregation) 854 self._symbolic_add_metric(value, aggregation, name) 856 self._eager_add_metric(value, aggregation, name) 1384 def _eager_add_metric(self, value, aggregation=None, name=None): argument 1396 assert aggregation is not None 1400 def _symbolic_add_metric(self, value, aggregation=None, name=None): argument [all …]
|
/external/opencensus-java/exporters/stats/prometheus/src/main/java/io/opencensus/exporter/stats/prometheus/ |
D | PrometheusExportUtils.java | 132 static Type getType(Aggregation aggregation, View.AggregationWindow window) { in getType() argument 136 return aggregation.match( in getType() 160 final Aggregation aggregation) { 198 Distribution distribution = (Distribution) aggregation;
|