Home
last modified time | relevance | path

Searched refs:exists (Results 1 – 18 of 18) sorted by relevance

/rocksdb-6.9/java/src/test/java/org/rocksdb/
DKeyMayExistTest.java49 assertThat(exists).isTrue(); in keyMayExist()
54 assertThat(exists).isTrue(); in keyMayExist()
68 assertThat(exists).isTrue(); in keyMayExist()
73 assertThat(exists).isTrue(); in keyMayExist()
78 assertThat(exists).isTrue(); in keyMayExist()
97 assertThat(exists).isTrue(); in keyMayExist()
103 assertThat(exists).isTrue(); in keyMayExist()
108 assertThat(exists).isTrue(); in keyMayExist()
114 assertThat(exists).isTrue(); in keyMayExist()
184 assertThat(exists).isTrue(); in keyMayExistNonUnicodeString()
[all …]
DNativeLibraryLoaderTest.java29 assertThat(Files.exists(path)).isTrue(); in tempFolder()
39 assertThat(first.exists()).isTrue(); in overridesExistingLibrary()
DCompactionFilterFactoryTest.java58 final boolean exists = rocksDb.keyMayExist(cfHandles.get(1), key2, null); in columnFamilyOptions_setCompactionFilterFactory()
59 assertThat(exists).isFalse(); in columnFamilyOptions_setCompactionFilterFactory()
DRocksDBTest.java1154 assertThat(dbFolder.getRoot().exists() && dbFolder.getRoot().listFiles().length != 0) in destroyDB()
1157 assertThat(dbFolder.getRoot().exists() && dbFolder.getRoot().listFiles().length != 0) in destroyDB()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DNativeLibraryLoader.java91 if (temp.exists() && !temp.delete()) { in loadLibraryFromJarToTemp()
101 if (!temp.exists()) { in loadLibraryFromJarToTemp()
/rocksdb-6.9/build_tools/
Damalgamate.py41 if path.exists(samedir):
45 if path.exists(include_path):
/rocksdb-6.9/db/
Dwal_manager.cc69 Status exists = env_->FileExists(archivedir); in GetSortedWalFiles() local
70 if (exists.ok()) { in GetSortedWalFiles()
75 } else if (!exists.IsNotFound()) { in GetSortedWalFiles()
/rocksdb-6.9/buckifier/
Dutil.py74 if cmd_dir is not None and not os.path.exists(cmd_dir):
/rocksdb-6.9/tools/
Dpflag97 -n: number of cycles to monitor. Default is to monitor until PID no longer exists.
/rocksdb-6.9/db_stress_tool/
Ddb_stress_test_base.cc1234 bool exists = thread->shared->Exists(rand_column_families[i], rand_keys[i]); in TestBackupRestore() local
1236 if (!exists) { in TestBackupRestore()
1240 if (exists) { in TestBackupRestore()
1356 bool exists = in TestCheckpoint() local
1359 if (!exists) { in TestCheckpoint()
1364 if (exists) { in TestCheckpoint()
/rocksdb-6.9/docs/_docs/
Dgetting-started.md33 If you want to raise an error if the database already exists, add the following line before the roc…
/rocksdb-6.9/docs/
DREADME.md15 …our local RocksDB clone (i.e., the same directory where this `README.md` exists). The below RubyGe…
/rocksdb-6.9/tools/block_cache_analyzer/
Dblock_cache_pysim.py365 if not path.exists(header_file_path):
388 if not path.exists(header_file_path):
439 if not path.exists(header_file_path):
468 if not path.exists(header_file_path):
Dblock_cache_trace_analyzer_plot.py664 if not os.path.exists(result_dir):
/rocksdb-6.9/docs/_posts/
D2015-02-27-write-batch-with-index.markdown18 …ocksDB. When the user wants to call `Get()`, we first check if the value exists in the `WriteBatch…
/rocksdb-6.9/java/rocksjni/
Drocksjni.cc1844 const bool exists = db->KeyMayExist( in key_may_exist_helper() local
1850 return exists; in key_may_exist_helper()
1868 const bool exists = key_may_exist_helper( in Java_org_rocksdb_RocksDB_keyMayExist() local
1878 return static_cast<jboolean>(exists); in Java_org_rocksdb_RocksDB_keyMayExist()
1895 const bool exists = key_may_exist_helper( in Java_org_rocksdb_RocksDB_keyMayExistFoundValue() local
1906 if (!exists) { in Java_org_rocksdb_RocksDB_keyMayExistFoundValue()
/rocksdb-6.9/tools/rdb/
DAPI.md34 # one exists, or null otherwise.
/rocksdb-6.9/
DHISTORY.md99 … result persisted in MANIFEST when there's concurrent flush job. The bug exists since OnFlushCompl…
447 * Fix write can stuck indefinitely if enable_pipelined_write=true. The issue exists since pipelined…