Home
last modified time | relevance | path

Searched refs:backupPrefix (Results 1 – 9 of 9) sorted by relevance

/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbserver/workloads/
H A DBackupToDBUpgrade.actor.cpp31 Key backupTag, restoreTag, backupPrefix, extraPrefix; member
38 backupPrefix = getOption(options, LiteralStringRef("backupPrefix"), StringRef()); in BackupToDBUpgradeWorkload()
44 extraPrefix = backupPrefix.withPrefix(LiteralStringRef("\xfe\xff\xfe")); in BackupToDBUpgradeWorkload()
45 backupPrefix = backupPrefix.withPrefix(LiteralStringRef("\xfe\xff\xff")); in BackupToDBUpgradeWorkload()
47 ASSERT(backupPrefix != StringRef()); in BackupToDBUpgradeWorkload()
107 auto targetRange = r.withPrefix(self->backupPrefix); in doBackup()
113 wait(backupAgent->submitBackup(tr, tag, backupRanges, false, self->backupPrefix, StringRef())); in doBackup()
291 KeyRef bkpKey = bkp->key.substr(backupPrefix.size()); in diffRanges()
403 wait( diffRanges(prevBackupRanges, self->backupPrefix, cx, self->extraDB ) ); in _start()
434 …ges.arena(), KeyRangeRef( r.begin.withPrefix(self->backupPrefix), r.end.withPrefix(self->backupPre… in _start()
[all …]
H A DBackupToDBCorrectness.actor.cpp32 Key backupPrefix, extraPrefix; member
51 backupPrefix = getOption(options, LiteralStringRef("backupPrefix"), StringRef()); in BackupToDBCorrectnessWorkload()
65 extraPrefix = backupPrefix.withPrefix(LiteralStringRef("\xfe\xff\xfe")); in BackupToDBCorrectnessWorkload()
66 backupPrefix = backupPrefix.withPrefix(LiteralStringRef("\xfe\xff\xff")); in BackupToDBCorrectnessWorkload()
69 extraPrefix = backupPrefix.withPrefix(LiteralStringRef("\x00\x00\x01")); in BackupToDBCorrectnessWorkload()
70 backupPrefix = backupPrefix.withPrefix(LiteralStringRef("\x00\x00\00")); in BackupToDBCorrectnessWorkload()
73 ASSERT(backupPrefix != StringRef()); in BackupToDBCorrectnessWorkload()
86 …ack_deep(backupRanges.arena(), KeyRangeRef(normalKeys.begin, std::min(backupPrefix, extraPrefix))); in BackupToDBCorrectnessWorkload()
151 KeyRef bkpKey = bkp->key.substr(backupPrefix.size()); in diffRanges()
236 auto targetRange = r.withPrefix(self->backupPrefix); in doBackup()
[all …]
H A DAtomicSwitchover.actor.cpp82 …Void> diffRanges(Standalone<VectorRef<KeyRangeRef>> ranges, StringRef backupPrefix, Database src, … in diffRanges()
93 …ResultRef>> bkpFuture = tr2.getRange(KeyRangeRef(begin, range.end).withPrefix(backupPrefix), 1000); in diffRanges()
100 KeyRef bkpKey = bkp->key.substr(backupPrefix.size()); in diffRanges()
128 …SevError, "MissingSrcKey").detail("BkpKey", printable(bkp->key.substr(backupPrefix.size()))).detai… in diffRanges()
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Resource/Processing/
H A DLocalCropScaleMaskHelper.php93 $backupPrefix = $gifBuilder->filenamePrefix;
109 $gifBuilder->filenamePrefix = $backupPrefix;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Resource/Processing/
H A DLocalCropScaleMaskHelper.php92 $backupPrefix = $gifBuilder->filenamePrefix;
108 $gifBuilder->filenamePrefix = $backupPrefix;
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Resource/Processing/
H A DLocalCropScaleMaskHelper.php91 $backupPrefix = $gifBuilder->filenamePrefix;
107 $gifBuilder->filenamePrefix = $backupPrefix;
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/utils/
H A Dkateconfig.h623 QString backupPrefix() const in backupPrefix() function
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/document/
H A Dkatedocument.cpp2613 …const auto backupPrefix = KTextEditor::EditorPrivate::self()->variableExpansionManager()->expandTe… in createBackupFile() local
2615 if (backupPrefix.isEmpty() && backupSuffix.isEmpty()) { in createBackupFile()
2620 if (backupPrefix.contains(QDir::separator())) { in createBackupFile()
2622 u.setPath(backupPrefix + u.fileName() + backupSuffix); in createBackupFile()
2627 u.setPath(u.path() + backupPrefix + fileName + backupSuffix); in createBackupFile()
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/dialogs/
H A Dkatedialogs.cpp1063 uiadv->edtBackupPrefix->setText(KateDocumentConfig::global()->backupPrefix()); in reload()