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

  /external/opencensus-java/contrib/exemplar_util/src/test/java/io/opencensus/contrib/exemplar/util/
ExemplarUtilsTest.java 17 package io.opencensus.contrib.exemplar.util;
20 import static io.opencensus.contrib.exemplar.util.ExemplarUtils.ATTACHMENT_KEY_SPAN_ID;
21 import static io.opencensus.contrib.exemplar.util.ExemplarUtils.ATTACHMENT_KEY_TRACE_ID;
  /external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
MutableAggregation.java 31 import io.opencensus.stats.AggregationData.DistributionData.Exemplar;
49 * @param attachments the contextual information on an {@link Exemplar}
270 // Only the newest exemplar will be kept at each index.
271 @javax.annotation.Nullable private final Exemplar[] exemplars;
277 // In the implementation, each histogram bucket can have up to one exemplar, and the exemplar
280 this.exemplars = bucketBoundaries.getBoundaries().isEmpty() ? null : new Exemplar[buckets];
329 exemplars[bucket] = Exemplar.create(value, timestamp, attachments);
375 Exemplar[] otherExemplars = mutableDistribution.getExemplars();
378 Exemplar exemplar = otherExemplars[i] local
412 @javax.annotation.Nullable AggregationData.DistributionData.Exemplar exemplar = null; local
    [all...]
  /external/icu/icu4c/source/common/
static_unicode_sets.h 107 UChar32 exemplar; member in struct:unisets::__anon23773
ucurr.cpp     [all...]
  /external/opencensus-java/contrib/exemplar_util/src/main/java/io/opencensus/contrib/exemplar/util/
ExemplarUtils.java 17 package io.opencensus.contrib.exemplar.util;
19 import io.opencensus.stats.AggregationData.DistributionData.Exemplar;
27 * Utils for recording {@link Exemplar}s for OpenCensus stats.
34 * Key for {@link TraceId} in the contextual information of an {@link Exemplar}.
44 * Key for {@link SpanId} in the contextual information of an {@link Exemplar}.
  /external/opencensus-java/api/src/test/java/io/opencensus/metrics/export/
DistributionTest.java 28 import io.opencensus.metrics.export.Distribution.Exemplar;
59 Exemplar exemplar = Exemplar.create(12.2, TIMESTAMP, ATTACHMENTS); local
60 Bucket bucket = Bucket.create(7, exemplar);
62 assertThat(bucket.getExemplar()).isEqualTo(exemplar);
68 thrown.expectMessage("exemplar");
74 Exemplar exemplar = Exemplar.create(-9.9, TIMESTAMP, ATTACHMENTS) local
148 Exemplar exemplar = Exemplar.create(15.0, TIMESTAMP, ATTACHMENTS); local
    [all...]
  /external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/
Distribution.java 255 * Creates a {@link Bucket} with an {@link Exemplar}.
258 * @param exemplar the {@code Exemplar} of this {@code Bucket}.
262 public static Bucket create(long count, Exemplar exemplar) {
264 Utils.checkNotNull(exemplar, "exemplar");
265 return new AutoValue_Distribution_Bucket(count, exemplar);
277 * Returns the {@link Exemplar} associated with the {@link Bucket}, or {@code null} if there
280 * @return the {@code Exemplar} associated with the {@code Bucket}, or {@code null} if ther
    [all...]
  /external/v8/src/builtins/
builtins-typed-array-gen.h 19 TNode<JSTypedArray> exemplar,
79 TNode<JSTypedArray> exemplar);
82 TNode<JSTypedArray> exemplar);
85 TNode<JSTypedArray> exemplar,
builtins-typed-array-gen.cc     [all...]
  /external/opencensus-java/api/src/test/java/io/opencensus/stats/
AggregationDataTest.java 27 import io.opencensus.stats.AggregationData.DistributionData.Exemplar;
69 Exemplar exemplar1 = Exemplar.create(4, TIMESTAMP_2, ATTACHMENTS);
70 Exemplar exemplar2 = Exemplar.create(1, TIMESTAMP_1, ATTACHMENTS);
79 Exemplar exemplar = Exemplar.create(15.0, TIMESTAMP_1, ATTACHMENTS); local
80 assertThat(exemplar.getValue()).isEqualTo(15.0);
81 assertThat(exemplar.getTimestamp()).isEqualTo(TIMESTAMP_1)
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/test/
DisplayAndInputProcessor.java 299 * an exemplar set is modified to be in the normal format, and any missing [ ]
539 UnicodeSet exemplar = new UnicodeSet(value); local
542 return exemplar.toPattern(false);
546 value = getCleanedUnicodeSet(exemplar, pp, exemplarType);
600 // If our DAIP always had a CLDRFile to work with, then we could just check the exemplar set in it to see.
    [all...]
  /external/opencensus-java/api/src/main/java/io/opencensus/stats/
AggregationData.java 286 List<Exemplar> exemplars) {
297 Utils.checkNotNull(exemplars, "exemplar list should not be null.");
298 for (Exemplar exemplar : exemplars) {
299 Utils.checkNotNull(exemplar, "exemplar");
309 Collections.<Exemplar>unmodifiableList(new ArrayList<Exemplar>(exemplars)));
338 Collections.<Exemplar>emptyList());
391 * Returns the {@link Exemplar}s associated with histogram buckets
    [all...]
  /external/opencensus-java/
CHANGELOG.md 20 - Add Exemplar class and an API to get Exemplar list to DistributionData.
22 - Add an artifact `opencensus-contrib-exemplar-util` that has helper utilities

Completed in 1046 milliseconds