Home
last modified time | relevance | path

Searched refs:condition (Results 1 – 20 of 20) sorted by relevance

/rocksdb-6.9/tools/advisor/advisor/
Ddb_timeseries_parser.py164 def handle_evaluate_expression(self, condition, statistics, entities): argument
168 if hasattr(condition, 'aggregation_op'):
175 entity, statistics, condition.aggregation_op
179 if eval(condition.expression):
198 if eval(condition.expression):
208 condition.set_trigger(trigger)
Drules.ini23 # A condition can be associated with one or more Rules.
110 …0])*int(options[1])-int(options[2])>=1 # should evaluate to a boolean, condition triggered if eva…
/rocksdb-6.9/monitoring/
Dperf_context_imp.h30 #define PERF_CONDITIONAL_TIMER_FOR_MUTEX_GUARD(metric, condition, stats, \ argument
60 #define PERF_CONDITIONAL_TIMER_FOR_MUTEX_GUARD(metric, condition, stats, \ argument
65 if (condition) { \
/rocksdb-6.9/docs/_posts/
D2016-09-28-rocksdb-4-11-2-released.markdown22 …* Mitigate the regression bug of deadlock condition during recovery when options.max_successive_me…
23 …* Fix data race condition related to hash index in block based table when putting indexes in the b…
D2017-03-02-rocksdb-5-2-1-released.markdown10 * Change the default of delayed slowdown value to 16MB/s and further increase the L0 stop condition
D2018-02-05-rocksdb-5-10-2-released.markdown22 * Fix DB::Flush() keep waiting after flush finish under certain condition.
D2014-07-29-rocksdb-3-3-release.markdown24 …te completes earlier than the specified time-out will not be aborted due to the time-out condition.
/rocksdb-6.9/db/
Djob_context.h66 notif.write_stall_info.condition.prev = old_cond; in PushWriteStallNotification()
67 notif.write_stall_info.condition.cur = new_cond; in PushWriteStallNotification()
Ddb_test.cc6040 condition_ = info.condition.cur; in OnStallConditionsChanged()
/rocksdb-6.9/tools/advisor/test/input_files/
Drules_err4.ini5 [Condition "normal-condition"]
Drules_err3.ini5 [Condition "normal-condition"]
Dtest_rules.ini1 [Rule "single-condition-false"]
Dtriggered_rules.ini80 …ptions[1])-int(options[2])>=-268173312 # should evaluate to a boolean, condition triggered if eva…
/rocksdb-6.9/
DDEFAULT_OPTIONS_HISTORY.md6 * Change the default of delayed slowdown value to 16MB/s and further increase the L0 stop condition
DHISTORY.md61 * Fix a race condition for cfd->log_number_ between manifest switch and memtable switch (PR 6249) w…
278 * Fix a race condition between WritePrepared::Get and ::Put with duplicate keys.
472 * Fix WAL corruption caused by race condition between user write thread and FlushWAL when two_write…
496 * Fix WAL corruption caused by race condition between user write thread and backup/checkpoint threa…
535 * Fix DB::Flush() keep waiting after flush finish under certain condition.
554 …kups will be opened during BackupEngine initialization. Previously this condition disabled limitin…
678 * Change the default of delayed slowdown value to 16MB/s and further increase the L0 stop condition
1045 …te completes earlier than the specified time-out will not be aborted due to the time-out condition.
/rocksdb-6.9/include/rocksdb/
Dlistener.h135 } condition; member
/rocksdb-6.9/tools/advisor/
DREADME.md59 the data source that would be checked for triggering that condition.
/rocksdb-6.9/docs/
DLICENSE-DOCUMENTATION358 c. No term or condition of this Public License will be waived and no
/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest.h2441 GTEST_API_ bool IsTrue(bool condition);
2634 # define GTEST_CHECK_(condition) \
2636 if (::testing::internal::IsTrue(condition)) \
21670 #define EXPECT_TRUE(condition) \
21671 GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
21673 #define EXPECT_FALSE(condition) \
21674 GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
21676 #define ASSERT_TRUE(condition) \
21677 GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
21679 #define ASSERT_FALSE(condition) \
[all …]
Dgtest-all.cc7006 bool IsTrue(bool condition) { return condition; } in IsTrue() argument