Searched refs:temp (Results 1 – 7 of 7) sorted by relevance
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | NativeLibraryLoader.java | 86 final File temp; in loadLibraryFromJarToTemp() local 88 temp = File.createTempFile(tempFilePrefix, tempFileSuffix); in loadLibraryFromJarToTemp() 90 temp = new File(tmpDir, jniLibraryFileName); in loadLibraryFromJarToTemp() 91 if (temp.exists() && !temp.delete()) { in loadLibraryFromJarToTemp() 92 throw new RuntimeException("File: " + temp.getAbsolutePath() in loadLibraryFromJarToTemp() 95 if (!temp.createNewFile()) { in loadLibraryFromJarToTemp() 96 throw new RuntimeException("File: " + temp.getAbsolutePath() in loadLibraryFromJarToTemp() 101 if (!temp.exists()) { in loadLibraryFromJarToTemp() 104 temp.deleteOnExit(); in loadLibraryFromJarToTemp() 113 Files.copy(is, temp.toPath(), StandardCopyOption.REPLACE_EXISTING); in loadLibraryFromJarToTemp() [all …]
|
| /rocksdb-6.9/db/ |
| D | obsolete_files_test.cc | 46 std::string temp = ToString(i); in AddKeys() local 47 Slice key(temp); in AddKeys() 48 Slice value(temp); in AddKeys()
|
| D | deletefile_test.cc | 59 std::string temp = ToString(i); in AddKeys() local 60 Slice key(temp); in AddKeys() 61 Slice value(temp); in AddKeys()
|
| D | version_set.cc | 2677 std::vector<Fsize>* temp) { in SortFileByOverlappingRatio() argument 2705 std::sort(temp->begin(), temp->end(), in SortFileByOverlappingRatio() 2728 std::vector<Fsize> temp(files.size()); in UpdateFilesByCompactionPri() local 2730 temp[i].index = i; in UpdateFilesByCompactionPri() 2731 temp[i].file = files[i]; in UpdateFilesByCompactionPri() 2736 if (num > temp.size()) { in UpdateFilesByCompactionPri() 2737 num = temp.size(); in UpdateFilesByCompactionPri() 2741 std::partial_sort(temp.begin(), temp.begin() + num, temp.end(), in UpdateFilesByCompactionPri() 2745 std::sort(temp.begin(), temp.end(), in UpdateFilesByCompactionPri() 2752 std::sort(temp.begin(), temp.end(), in UpdateFilesByCompactionPri() [all …]
|
| D | db_compaction_test.cc | 5035 FileMetaData* temp = *(p->first); in TEST_F() local 5037 *(p->second) = temp; in TEST_F()
|
| /rocksdb-6.9/db_stress_tool/ |
| D | db_stress_shared_state.h | 79 int64_t temp = permutation[i]; in SharedState() local 81 permutation[rand_index] = temp; in SharedState()
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 379 …d_builder is changed to false. Note that this new default may cause large temp memory usage when b…
|