Home
last modified time | relevance | path

Searched full:threshold (Results 1 – 25 of 4377) sorted by relevance

12345678910>>...176

/external/google-cloud-java/java-monitoring-dashboards/proto-google-cloud-monitoring-dashboard-v1/src/main/java/com/google/monitoring/dashboard/v1/
DThreshold.java25 * Defines a threshold for categorizing time series values.
28 * Protobuf type {@code google.monitoring.dashboard.v1.Threshold}
30 public final class Threshold extends com.google.protobuf.GeneratedMessageV3 class
32 // @@protoc_insertion_point(message_implements:google.monitoring.dashboard.v1.Threshold)
35 // Use Threshold.newBuilder() to construct.
36 private Threshold(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Threshold() method in Threshold
40 private Threshold() { in Threshold() method in Threshold
50 return new Threshold(); in newInstance()
69 com.google.monitoring.dashboard.v1.Threshold.class, in internalGetFieldAccessorTable()
70 com.google.monitoring.dashboard.v1.Threshold.Builder.class); in internalGetFieldAccessorTable()
[all …]
DThresholdOrBuilder.java23 // @@protoc_insertion_point(interface_extends:google.monitoring.dashboard.v1.Threshold)
30 * A label for the threshold.
42 * A label for the threshold.
55 * The value of the threshold. The value should be defined in the native scale
69 * The state color for this threshold. Color is not allowed in a XyChart.
72 * <code>.google.monitoring.dashboard.v1.Threshold.Color color = 3;</code>
81 * The state color for this threshold. Color is not allowed in a XyChart.
84 * <code>.google.monitoring.dashboard.v1.Threshold.Color color = 3;</code>
88 com.google.monitoring.dashboard.v1.Threshold.Color getColor(); in getColor()
94 * The direction for the current threshold. Direction is not allowed in a
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DInlineCost.h59 /// Objects of this type also provide the adjusted threshold for inlining
62 /// threshold for this cost metric.
72 /// The adjusted threshold against which this cost was computed.
73 int Threshold; variable
79 InlineCost(int Cost, int Threshold, const char *Reason = nullptr)
80 : Cost(Cost), Threshold(Threshold), Reason(Reason) { in Cost()
86 static InlineCost get(int Cost, int Threshold) { in get() argument
89 return InlineCost(Cost, Threshold); in get()
100 return Cost < Threshold;
114 /// Get the threshold against which the cost was computed
[all …]
/external/apache-commons-io/src/main/java/org/apache/commons/io/output/
DDeferredFileOutputStream.java32 …* An output stream which will retain data in memory until a specified threshold is reached, and on…
33 * threshold is reached, the data will not be written to disk at all.
56 * .setThreshold(threshold)
67 private int threshold; field in DeferredFileOutputStream.Builder
84 … * This builder use the aspects threshold, outputFile, prefix, suffix, directory, buffer size.
91 …return new DeferredFileOutputStream(threshold, outputFile, prefix, suffix, directory, getBufferSiz… in get()
118 * Sets the file to which data is saved beyond the threshold.
120 * @param outputFile The file to which data is saved beyond the threshold.
129 * Sets the file to which data is saved beyond the threshold.
131 * @param outputFile The file to which data is saved beyond the threshold.
[all …]
DThresholdingOutputStream.java28 * type when the threshold is exceeded.
34 …* NOTE: This implementation may trigger the event <em>before</em> the threshold is actually reache…
35 * when a pending write operation would cause the threshold to be exceeded.
46 * The threshold at which the event will be triggered.
48 private final int threshold; field in ThresholdingOutputStream
51 * Accepts reaching the threshold.
66 * Whether or not the configured threshold has been exceeded.
71 * Constructs an instance of this class which will trigger an event at the specified threshold.
73 * @param threshold The number of bytes at which to trigger an event.
75 public ThresholdingOutputStream(final int threshold) { in ThresholdingOutputStream() argument
[all …]
/external/grpc-grpc/test/core/client_channel/
Dretry_throttle_test.cc30 // Max token count is 4, so threshold for retrying is 2. in TEST()
35 // Failure: token_count=3. Above threshold. in TEST()
39 // Failure: token_count=3. Above threshold. in TEST()
41 // Failure: token_count=2. At threshold, so no retries. in TEST()
43 // Failure: token_count=1. Below threshold, so no retries. in TEST()
45 // Failure: token_count=0. Below threshold, so no retries. in TEST()
47 // Failure: token_count=0. Below threshold, so no retries. Not in TEST()
54 // Failure: token_count=2.2. Above threshold. in TEST()
56 // Failure: token_count=1.2. Below threshold, so no retries. in TEST()
60 // Failure: token_count=1.8. Below threshold, so no retries. in TEST()
[all …]
/external/federated-compute/fcp/secagg/server/
Dsecret_sharing_graph_factory.h40 int num_nodes, int threshold) { in CreateCompleteGraph() argument
43 FCP_CHECK(threshold >= 1) in CreateCompleteGraph()
44 << "threshold must be >= 1, given value was " << threshold; in CreateCompleteGraph()
45 FCP_CHECK(threshold <= num_nodes) in CreateCompleteGraph()
46 << "threshold must be <= num_nodes, given values were " << threshold in CreateCompleteGraph()
49 new SecretSharingCompleteGraph(num_nodes, threshold)); in CreateCompleteGraph()
54 int num_nodes, int degree, int threshold, bool is_random = true) {
62 FCP_CHECK(threshold >= 1)
63 << "threshold must be >= 1, given value was " << threshold;
64 FCP_CHECK(threshold <= degree)
[all …]
/external/federated-compute/fcp/secagg/shared/
Dshamir_secret_sharing_test.cc37 for (int threshold = 2; threshold <= num_shares; ++threshold) { in TEST() local
38 shares = shamir.Share(threshold, num_shares, secret); in TEST()
57 "threshold must be at least 2 and at most num_shares"); in TEST()
59 "threshold must be at least 2 and at most num_shares"); in TEST()
66 int threshold = 4; in TEST() local
67 shares = shamir.Share(threshold, num_shares, secret); in TEST()
69 shamir.Reconstruct(threshold, shares, secret.size()); in TEST()
78 int threshold = 4; in TEST() local
79 shares = shamir.Share(threshold, num_shares, secret); in TEST()
83 shamir.Reconstruct(threshold, shares, secret.size()); in TEST()
[all …]
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/concurrent/
DThresholdCircuitBreaker.java24 * that opens if the requested increment amount is greater than a given threshold.
28 * If the threshold is zero, the circuit breaker will be in a permanent <em>open</em> state.
36 * long threshold = 10L;
59 * The threshold.
61 private final long threshold; field in ThresholdCircuitBreaker
69 * Creates a new instance of {@link ThresholdCircuitBreaker} and initializes the threshold.
71 * @param threshold the threshold.
73 public ThresholdCircuitBreaker(final long threshold) { in ThresholdCircuitBreaker() argument
75 this.threshold = threshold; in ThresholdCircuitBreaker()
79 * Gets the threshold.
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/
DInlineCost.h85 /// Objects of this type also provide the adjusted threshold for inlining
88 /// threshold for this cost metric.
95 /// The adjusted threshold against which this cost was computed.
96 int Threshold = 0; variable
108 InlineCost(int Cost, int Threshold, int StaticBonusApplied,
111 : Cost(Cost), Threshold(Threshold), in Cost()
119 static InlineCost get(int Cost, int Threshold, int StaticBonus = 0) {
122 return InlineCost(Cost, Threshold, StaticBonus);
136 explicit operator bool() const { return Cost < Threshold; }
149 /// Get the threshold against which the cost was computed
[all …]
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/concurrent/
DThresholdCircuitBreakerTest.java32 * Threshold used in tests.
34 private static final long threshold = 10L; field in ThresholdCircuitBreakerTest
39 * Tests that the threshold is working as expected when incremented and no exception is thrown.
43 final ThresholdCircuitBreaker circuit = new ThresholdCircuitBreaker(threshold); in testThreshold()
45 … assertFalse(circuit.incrementAndCheckState(1L), "Circuit opened before reaching the threshold"); in testThreshold()
49 * Tests that exceeding the threshold raises an exception.
53 final ThresholdCircuitBreaker circuit = new ThresholdCircuitBreaker(threshold); in testThresholdCircuitBreakingException()
55 …ementAndCheckState(2L), "The circuit was supposed to be open after increment above the threshold"); in testThresholdCircuitBreakingException()
59 * Test that when threshold is zero, the circuit breaker is always open.
64 …assertTrue(circuit.incrementAndCheckState(0L), "When the threshold is zero, the circuit is suppose… in testThresholdEqualsZero()
[all …]
/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
DInterconnectDiagnosticsLinkOpticalPowerOrBuilder.java30threshold. - LOW_WARNING: The value has crossed below the low warning threshold. - HIGH_WARNING: T…
43threshold. - LOW_WARNING: The value has crossed below the low warning threshold. - HIGH_WARNING: T…
56threshold. - LOW_WARNING: The value has crossed below the low warning threshold. - HIGH_WARNING: T…
DInterconnectDiagnosticsLinkOpticalPower.java75threshold. - LOW_WARNING: The value has crossed below the low warning threshold. - HIGH_WARNING: T…
95 * The value has crossed above the high alarm threshold.
105 * The value of the current optical power has crossed above the high warning threshold.
115 * The value of the current optical power has crossed below the low alarm threshold.
125 * The value of the current optical power has crossed below the low warning threshold.
135 * The value of the current optical power has not crossed a warning threshold.
158 * The value has crossed above the high alarm threshold.
168 * The value of the current optical power has crossed above the high warning threshold.
178 * The value of the current optical power has crossed below the low alarm threshold.
188 * The value of the current optical power has crossed below the low warning threshold.
[all …]
/external/iproute2/man/man8/
Ddevlink-sb.863 .BI th " THRESHOLD "
87 .BI th " THRESHOLD "
143 pool threshold type.
146 - Threshold values for the pool will be passed in Bytes.
149 - Threshold values ("to_alpha") for the pool will be used to compute alpha parameter according to f…
163 .SS devlink sb port pool show - display port-pool combinations and threshold for each
171 .SS devlink sb port pool set - set port-pool threshold
180 .BI th " THRESHOLD"
181 threshold value. Type of the value is either Bytes or "to_alpha", depends on
185 .SS devlink sb tc bind show - display port-TC to pool bindings and threshold for each
[all …]
/external/llvm/include/llvm/Analysis/
DInlineCost.h48 /// Objects of this type also provide the adjusted threshold for inlining
51 /// threshold for this cost metric.
61 /// \brief The adjusted threshold against which this cost was computed.
62 const int Threshold; variable
65 InlineCost(int Cost, int Threshold) : Cost(Cost), Threshold(Threshold) {} in InlineCost() argument
68 static InlineCost get(int Cost, int Threshold) { in get() argument
71 return InlineCost(Cost, Threshold); in get()
82 return Cost < Threshold;
96 /// \brief Get the cost delta from the threshold for inlining.
99 int getCostDelta() const { return Threshold - getCost(); } in getCostDelta()
[all …]
/external/bazel-skylib/lib/
Dversions.bzl62 def _is_at_most(threshold, version):
63 """Check that a version is lower or equals to a threshold.
66 threshold: the maximum version string
67 version: the version string to be compared to the threshold
70 True if version <= threshold.
72 return _parse_bazel_version(version) <= _parse_bazel_version(threshold)
74 def _is_at_least(threshold, version):
75 """Check that a version is higher or equals to a threshold.
78 threshold: the minimum version string
79 version: the version string to be compared to the threshold
[all …]
/external/bazelbuild-rules_go/go/private/skylib/lib/
Dversions.bzl57 def _is_at_most(threshold, version):
58 """Check that a version is lower or equals to a threshold.
61 threshold: the maximum version string
62 version: the version string to be compared to the threshold
65 True if version <= threshold.
67 return _parse_bazel_version(version) <= _parse_bazel_version(threshold)
69 def _is_at_least(threshold, version):
70 """Check that a version is higher or equals to a threshold.
73 threshold: the minimum version string
74 version: the version string to be compared to the threshold
[all …]
/external/tensorflow/tensorflow/core/kernels/
Droll_op.cc82 // threshold[i] is the index that the roll starts to wrap back to the front in Compute()
83 gtl::InlinedVector<int32, 4> threshold(num_dims); in Compute() local
86 // to the other. Used to make the shifts wrap around after a threshold. in Compute()
95 threshold[i] = (ds - shift_mod_sum[i]) % ds; in Compute()
107 input_flat, output_flat, threshold, dim_range, in Compute()
117 // to the other. Used to make the shifts wrap around after a threshold.
118 // threshold - the index for each dimension that the roll starts to wrap
123 const T* input, T* output, const gtl::ArraySlice<int32> threshold, in DoRoll() argument
125 auto work = [input, output, num_dims, &dim_size, &threshold, &dim_range]( in DoRoll()
136 const int shift = dim_size[i] - threshold[i]; in DoRoll()
[all …]
/external/google-cloud-java/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/
Dmodel_monitoring.proto80 // Key is the feature name and value is the threshold. If a feature needs to
81 // be monitored for skew, a value threshold must be configured for that
82 // feature. The threshold here is against feature distribution distance
86 // Key is the feature name and value is the threshold. The threshold here is
91 // Skew anomaly detection threshold used by all features.
93 // specify a threshold for all features.
99 // Key is the feature name and value is the threshold. If a feature needs to
100 // be monitored for drift, a value threshold must be configured for that
101 // feature. The threshold here is against feature distribution distance
105 // Key is the feature name and value is the threshold. The threshold here is
[all …]
/external/bazel-skylib/docs/
Dversions_doc.md42 versions.is_at_least(<a href="#versions.is_at_least-threshold">threshold</a>, <a href="#versions.is…
45 Check that a version is higher or equals to a threshold.
52 | <a id="versions.is_at_least-threshold"></a>threshold | the minimum version string | none |
53 ….is_at_least-version"></a>version | the version string to be compared to the threshold | none |
57 True if version >= threshold.
65 versions.is_at_most(<a href="#versions.is_at_most-threshold">threshold</a>, <a href="#versions.is_a…
68 Check that a version is lower or equals to a threshold.
75 | <a id="versions.is_at_most-threshold"></a>threshold | the maximum version string | none |
76 …s.is_at_most-version"></a>version | the version string to be compared to the threshold | none |
80 True if version <= threshold.
/external/googleapis/google/cloud/aiplatform/v1/
Dmodel_monitoring.proto80 // Key is the feature name and value is the threshold. If a feature needs to
81 // be monitored for skew, a value threshold must be configured for that
82 // feature. The threshold here is against feature distribution distance
86 // Key is the feature name and value is the threshold. The threshold here is
91 // Skew anomaly detection threshold used by all features.
93 // specify a threshold for all features.
99 // Key is the feature name and value is the threshold. If a feature needs to
100 // be monitored for drift, a value threshold must be configured for that
101 // feature. The threshold here is against feature distribution distance
105 // Key is the feature name and value is the threshold. The threshold here is
[all …]
/external/cronet/testing/flake_suppressor_common/
Dargument_parsing.py36 parser.add_argument('--ignore-threshold',
42 parser.add_argument('--flaky-threshold',
78 '--build-fail-total-number-threshold',
81 help=('Threshold based on failed build number when '
84 'this threshold. All --build-fail*-thresholds must be hit in '
87 '--build-fail-consecutive-days-threshold',
90 help=('Threshold based on number of consecutive days that non-hidden'
93 'to or more than this threshold. All --build-fail*-thresholds '
104 raise ValueError('--ignore-threshold must be positive')
106 raise ValueError('--flaky-threshold must be positive')
[all …]
/external/google-cloud-java/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/
Dmodel_monitoring.proto104 // Key is the feature name and value is the threshold. If a feature needs to
105 // be monitored for skew, a value threshold must be configured for that
106 // feature. The threshold here is against feature distribution distance
110 // Key is the feature name and value is the threshold. The threshold here is
115 // Skew anomaly detection threshold used by all features.
117 // specify a threshold for all features.
123 // Key is the feature name and value is the threshold. If a feature needs to
124 // be monitored for drift, a value threshold must be configured for that
125 // feature. The threshold here is against feature distribution distance
129 // Key is the feature name and value is the threshold. The threshold here is
[all …]
/external/googleapis/google/cloud/aiplatform/v1beta1/
Dmodel_monitoring.proto104 // Key is the feature name and value is the threshold. If a feature needs to
105 // be monitored for skew, a value threshold must be configured for that
106 // feature. The threshold here is against feature distribution distance
110 // Key is the feature name and value is the threshold. The threshold here is
115 // Skew anomaly detection threshold used by all features.
117 // specify a threshold for all features.
123 // Key is the feature name and value is the threshold. If a feature needs to
124 // be monitored for drift, a value threshold must be configured for that
125 // feature. The threshold here is against feature distribution distance
129 // Key is the feature name and value is the threshold. The threshold here is
[all …]
/external/llvm/test/Transforms/LoopUnroll/
Dfull-unroll-heuristics.ll3 ; 1) -unroll-threshold
4 ; 3) -unroll-percent-dynamic-cost-saved-threshold and
8 ; * If size of unrolled loop exceeds the absoulte threshold, we don't unroll
10 ; * If size of unrolled loop is below the '-unroll-threshold', then we'll
20 …ll-max-iteration-count-to-analyze=1000 -unroll-threshold=10 -unroll-percent-dynamic-cost-saved-th…
21 …ll-max-iteration-count-to-analyze=1000 -unroll-threshold=10 -unroll-percent-dynamic-cost-saved-th…
22 …ll-max-iteration-count-to-analyze=1000 -unroll-threshold=10 -unroll-percent-dynamic-cost-saved-th…
23 …ll-max-iteration-count-to-analyze=1000 -unroll-threshold=100 -unroll-percent-dynamic-cost-saved-th…
25 ; If the absolute threshold is too low, or if we can't optimize away requested
33 ; Also, we should unroll if the 'unroll-threshold' is big enough:

12345678910>>...176