Home
last modified time | relevance | path

Searched refs:version (Results 1 – 25 of 941) sorted by relevance

12345678910>>...38

/rocksdb-6.9/db/
Dinternal_stats.h44 Version* version);
531 Version* version);
535 Version* version);
539 Version* version);
542 Version* version);
548 Version* version);
552 Version* version);
557 Version* version);
571 Version* version);
579 Version* version);
[all …]
Dversion_edit_handler.cc558 auto* version = new Version(cfd, version_set_, version_set_->file_options_, in MaybeCreateVersion() local
561 builder->SaveTo(version->storage_info()); in MaybeCreateVersion()
562 version->PrepareApply( in MaybeCreateVersion()
568 v_iter->second = version; in MaybeCreateVersion()
570 versions_.emplace(cfd->GetID(), version); in MaybeCreateVersion()
/rocksdb-6.9/
DRocksDBConfigVersion.cmake1 # This is a basic version file for the Config-mode of find_package().
3 # to create a version-file which can be installed along a config.cmake file.
5 # The created file sets PACKAGE_VERSION_EXACT if the current version string and
6 # the requested version string are exactly the same and it sets
7 # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version,
8 # but only if the requested major version is the same as the current one.
28 # both endpoints of the range must have the expected major version
60 # check that the installed version has the same 32/64bit-ness as the one which is currently searchi…
DCOPYING239 be similar in spirit to the present version, but may differ in detail to
242 Each version is given a distinguishing version number. If the Program
243 specifies a version number of this License which applies to it and "any
244 later version", you have the option of following the terms and conditions
245 either of that version or of any later version published by the Free
246 Software Foundation. If the Program does not specify a version number of
247 this License, you may choose any version ever published by the Free Software
298 the Free Software Foundation; either version 2 of the License, or
299 (at your option) any later version.
315 Gnomovision version 69, Copyright (C) year name of author
DDUMP_FORMAT.md3 The version 1 RocksDB dump format is fairly simple:
7 2) The magic is followed by an 8 byte big-endian version which is 0x00000001.
D.travis.yml194 which java && java -version
195 which javac && javac -version
204 - ${CXX} --version
/rocksdb-6.9/docs/_posts/
D2014-06-27-avoid-expensive-locks-in-get.markdown12 …ency control strategy. Before reading data, it needs to grab the current version, which is encapsu…
32version. Instead of releasing the reference after use, the reference is cached in thread’s local s…
45 // slow path, cleanup of current super version is omitted
59 …events mutual competition by directing threads to check against a global version which does not ch…
64 …cal storage. All resources (e.g., memtables, files) which belong to that version are frozen. A “su…
D2014-05-14-lock.markdown27 1. Consolidate reference counters and introduce "super version". For every read operation, mutex wa…
29version](https://reviews.facebook.net/rROCKSDB1fdb3f7dc60e96394e3e5b69a46ede5d67fb976c)”, which ho…
33version and reference counting lock-free in read queries. After consolidating reference counting t…
D2016-02-24-rocksdb-4-2-release.markdown32 …OnDeletionCollectorFactory() in the new version, you may not be able to directly downgrade the DB …
/rocksdb-6.9/build_tools/
Dversion.sh9 cat include/rocksdb/version.h | grep MAJOR | head -n1 | awk '{print $3}'
12 cat include/rocksdb/version.h | grep MINOR | head -n1 | awk '{print $3}'
15 cat include/rocksdb/version.h | grep PATCH | head -n1 | awk '{print $3}'
22 include/rocksdb/version.h
Dfb_compile_mongo.sh32 if ! test -e version.json; then
52 --disable-minimum-compiler-version-enforcement \
/rocksdb-6.9/table/
Dformat.h105 uint32_t version) { in GetCompressFormatForVersion() argument
116 return version >= 2 ? 2 : 1; in GetCompressFormatForVersion()
119 inline bool BlockBasedTableSupportedVersion(uint32_t version) { in BlockBasedTableSupportedVersion() argument
120 return version <= 5; in BlockBasedTableSupportedVersion()
136 Footer(uint64_t table_magic_number, uint32_t version);
139 uint32_t version() const { return version_; } in version() function
Dsst_file_writer_collectors.h27 explicit SstFileWriterPropertiesCollector(int32_t version, in SstFileWriterPropertiesCollector() argument
29 : version_(version), global_seqno_(global_seqno) {} in SstFileWriterPropertiesCollector()
76 explicit SstFileWriterPropertiesCollectorFactory(int32_t version, in SstFileWriterPropertiesCollectorFactory() argument
78 : version_(version), global_seqno_(global_seqno) {} in SstFileWriterPropertiesCollectorFactory()
/rocksdb-6.9/cmake/modules/
DReadVersion.cmake1 # Read rocksdb version from version.h header file.
4 file(READ "${CMAKE_CURRENT_SOURCE_DIR}/include/rocksdb/version.h" version_header_file)
/rocksdb-6.9/db/compaction/
Dcompaction_picker_fifo.h24 VersionStorageInfo* version, LogBuffer* log_buffer,
44 VersionStorageInfo* version,
49 VersionStorageInfo* version,
/rocksdb-6.9/include/rocksdb/
Dsst_file_writer.h41 version(0) {} in ExternalSstFileInfo()
57 version(_version) {} in ExternalSstFileInfo()
69 int32_t version; // file version member
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DBlockBasedTableConfigTest.java315 for (int version = 0; version < 5; version++) { in formatVersion()
316 blockBasedTableConfig.setFormatVersion(version); in formatVersion()
317 assertThat(blockBasedTableConfig.formatVersion()).isEqualTo(version); in formatVersion()
/rocksdb-6.9/java/
DMakefile90 ROCKSDB_MAJOR = $(shell egrep "ROCKSDB_MAJOR.[0-9]" ../include/rocksdb/version.h | cut -d ' ' -f 3)
91 ROCKSDB_MINOR = $(shell egrep "ROCKSDB_MINOR.[0-9]" ../include/rocksdb/version.h | cut -d ' ' -f 3)
92 ROCKSDB_PATCH = $(shell egrep "ROCKSDB_PATCH.[0-9]" ../include/rocksdb/version.h | cut -d ' ' -f 3)
244 ifeq ($(shell java -version 2>&1 | grep 1.7.0 > /dev/null; printf $$?), 0)
255 ifeq ($(shell java -version 2>&1 | grep 1.7.0 > /dev/null; printf $$?), 0)
299 ifeq ($(shell java -version 2>&1|grep 1.7.0 >/dev/null; printf $$?),0)
/rocksdb-6.9/utilities/blob_db/
Dblob_log_format.cc21 PutFixed32(dst, version); in EncodeTo()
39 if (!GetFixed32(&src, &magic_number) || !GetFixed32(&src, &version) || in DecodeFrom()
48 if (version != kVersion1) { in DecodeFrom()
/rocksdb-6.9/CMakeFiles/
DCMakeConfigureLog.yaml63 … FreeBSD clang version 13.0.0 ([email protected]:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a303)
74 …ng whether the ASM compiler is AppleClang using "--version" did not match "(Apple (clang|LLVM) ver…
75 … FreeBSD clang version 13.0.0 ([email protected]:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a303)
86 Checking whether the ASM compiler is Clang using "--version" matched "(clang version)":
87 … FreeBSD clang version 13.0.0 ([email protected]:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a303)
119 … FreeBSD clang version 13.0.0 ([email protected]:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a303)
125 clang -cc1 version 13.0.0 based upon LLVM 13.0.0 default target x86_64-unknown-freebsd13.1
135 … FreeBSD clang version 13.0.0 ([email protected]:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a303)
272 … FreeBSD clang version 13.0.0 ([email protected]:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a303)
278 clang -cc1 version 13.0.0 based upon LLVM 13.0.0 default target x86_64-unknown-freebsd13.1
[all …]
/rocksdb-6.9/java/jmh/
DREADME.md7 …<version>` element of the `dependencies` section of the `pom.xml` file. If you are testing local c…
/rocksdb-6.9/CMakeFiles/Export/7a006447cadce6044e9a8143a913fd66/
DRocksDBTargets-release.cmake5 # Commands may need to know the format version.
28 # Commands beyond this point should not need to know the version.
DRocksDBTargets-relwithdebinfo.cmake5 # Commands may need to know the format version.
28 # Commands beyond this point should not need to know the version.
DRocksDBTargets.cmake15 # Commands may need to know the format version.
113 # Commands beyond this point should not need to know the version.
/rocksdb-6.9/docs/
DREADME.md21 > version of Ruby for your Mac OS X system.
56 …bundle exec` will always use the version of Jekyll from our `Gemfile`. Just running `jekyll` will …

12345678910>>...38