| /external/google-cloud-java/java-monitoring-dashboards/proto-google-cloud-monitoring-dashboard-v1/src/main/java/com/google/monitoring/dashboard/v1/ |
| D | Threshold.java | 25 * 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 …]
|
| D | ThresholdOrBuilder.java | 23 // @@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/ |
| D | InlineCost.h | 59 /// 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/ |
| D | DeferredFileOutputStream.java | 32 …* 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 …]
|
| D | ThresholdingOutputStream.java | 28 * 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/ |
| D | retry_throttle_test.cc | 30 // 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/ |
| D | secret_sharing_graph_factory.h | 40 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/ |
| D | shamir_secret_sharing_test.cc | 37 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/ |
| D | ThresholdCircuitBreaker.java | 24 * 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/ |
| D | InlineCost.h | 85 /// 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/ |
| D | ThresholdCircuitBreakerTest.java | 32 * 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/ |
| D | InterconnectDiagnosticsLinkOpticalPowerOrBuilder.java | 30 …threshold. - LOW_WARNING: The value has crossed below the low warning threshold. - HIGH_WARNING: T… 43 …threshold. - LOW_WARNING: The value has crossed below the low warning threshold. - HIGH_WARNING: T… 56 …threshold. - LOW_WARNING: The value has crossed below the low warning threshold. - HIGH_WARNING: T…
|
| D | InterconnectDiagnosticsLinkOpticalPower.java | 75 …threshold. - 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/ |
| D | devlink-sb.8 | 63 .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/ |
| D | InlineCost.h | 48 /// 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/ |
| D | versions.bzl | 62 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/ |
| D | versions.bzl | 57 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/ |
| D | roll_op.cc | 82 // 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/ |
| D | model_monitoring.proto | 80 // 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/ |
| D | versions_doc.md | 42 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/ |
| D | model_monitoring.proto | 80 // 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/ |
| D | argument_parsing.py | 36 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/ |
| D | model_monitoring.proto | 104 // 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/ |
| D | model_monitoring.proto | 104 // 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/ |
| D | full-unroll-heuristics.ll | 3 ; 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:
|