Home
last modified time | relevance | path

Searched refs:exist (Results 1 – 10 of 10) sorted by relevance

/rocksdb-6.9/CMakeFiles/Export/7a006447cadce6044e9a8143a913fd66/
DRocksDBTargets.cmake85 # Loop over all imported files and verify that they actually exist
94 but this file does not exist. Possible reasons include:
/rocksdb-6.9/docs/_posts/
D2014-09-12-new-bloom-filter-format.markdown19 …a bits array generated for a set of keys that could tell if an arbitrary key may exist in that set.
21 …or a key, we first goes to the bloom filter block of SST file. If key may exist in filter, we goes…
D2015-11-10-use-checkpoints-for-efficient-snapshots.markdown40 The directory should not already exist and will be created by this API. The directory will be an ab…
/rocksdb-6.9/utilities/transactions/
Dwrite_prepared_txn_db.h182 bool exist = GetCommitEntry(indexed_seq, &dont_care, &cached); variable
185 if (exist && prep_seq == cached.prep_seq) {
244 exist = GetCommitEntry(indexed_seq, &dont_care, &cached);
245 if (exist && prep_seq == cached.prep_seq) {
/rocksdb-6.9/
DRocksDBConfig.cmake11 … message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
DHISTORY.md256 …h allowed `Put`s covered by range tombstones to reappear. Note `Put`s may exist even if the user o…
333 * With "ldb ----try_load_options", when wal_dir specified by the option file doesn't exist, ignore …
455 * Posix Env's NewRandomRWFile() will fail if the file doesn't exist.
873 …ple RocksDB instances to control the file deletion rate of SST files that exist in the first db_pa…
/rocksdb-6.9/docs/
DCONTRIBUTING.md74 …e.md` for an example of the YAML format. **If the `./_posts` directory does not exist, create it**.
86 …or an example of the YAML header format. **If the `./_docs/` directory does not exist, create it**.
/rocksdb-6.9/tools/
Drun_flash_bench.sh162 echo Database backup does not exist at ${db_dir}.bak
173 echo WAL backup does not exist at ${wal_dir}.bak
Drun_leveldb.sh117 echo Database backup does not exist at ${db_dir}.bak
/rocksdb-6.9/utilities/backupable/
Dbackupable_db.cc1447 Status exist = backup_env_->FileExists(final_dest_path); in AddBackupFileWorkItem() local
1448 if (exist.ok()) { in AddBackupFileWorkItem()
1450 } else if (exist.IsNotFound()) { in AddBackupFileWorkItem()
1454 return exist; in AddBackupFileWorkItem()