Home
last modified time | relevance | path

Searched refs:backupList (Results 1 – 25 of 38) sorted by relevance

12

/dports/databases/pgbackrest/pgbackrest-release-2.35/src/command/stanza/
H A Ddelete.c34 StringList *backupList = strLstSort( in manifestDelete() local
41 for (unsigned int idx = 0; idx < strLstSize(backupList); idx++) in manifestDelete()
44 …nza, strNewFmt(STORAGE_REPO_BACKUP "/%s/" BACKUP_MANIFEST_FILE, strZ(strLstGet(backupList, idx)))); in manifestDelete()
47 …(STORAGE_REPO_BACKUP "/%s/" BACKUP_MANIFEST_FILE INFO_COPY_EXT, strZ(strLstGet(backupList, idx)))); in manifestDelete()
54 …const Storage *storageRepoWriteStanza, const StringList *archiveList, const StringList *backupList) in stanzaDelete() argument
59 FUNCTION_TEST_PARAM(STRING_LIST, backupList); in stanzaDelete()
68 if (archiveList != NULL || backupList != NULL) in stanzaDelete()
71 bool backupNotEmpty = (backupList != NULL && !strLstEmpty(backupList)) ? true : false; in stanzaDelete()
118 if (backupList != NULL) in stanzaDelete()
/dports/devel/php-ice37/ice-3.7.2/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/Application/
H A DTemplates.java23 java.util.List<Object> backupList = new java.util.Vector<>(); in tryUpdate() local
31 backupList.add(p.rebuild(editables)); in tryUpdate()
35 for(int i = backupList.size() - 1; i >= 0; --i) in tryUpdate()
38 instance.restore(backupList.get(i)); in tryUpdate()
H A DNodes.java127 java.util.List<Node.Backup> backupList = new java.util.ArrayList<>(); in rebuild() local
135 backupList.add(node.rebuild(editables)); in rebuild()
139 for(int i = backupList.size() - 1; i >= 0; --i) in rebuild()
141 ((Node)_children.get(i)).restore(backupList.get(i)); in rebuild()
/dports/devel/ice37/ice-3.7.2/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/Application/
H A DTemplates.java23 java.util.List<Object> backupList = new java.util.Vector<>(); in tryUpdate() local
31 backupList.add(p.rebuild(editables)); in tryUpdate()
35 for(int i = backupList.size() - 1; i >= 0; --i) in tryUpdate()
38 instance.restore(backupList.get(i)); in tryUpdate()
H A DNodes.java127 java.util.List<Node.Backup> backupList = new java.util.ArrayList<>(); in rebuild() local
135 backupList.add(node.rebuild(editables)); in rebuild()
139 for(int i = backupList.size() - 1; i >= 0; --i) in rebuild()
141 ((Node)_children.get(i)).restore(backupList.get(i)); in rebuild()
/dports/devel/py-ice37/ice-3.7.2/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/Application/
H A DTemplates.java23 java.util.List<Object> backupList = new java.util.Vector<>(); in tryUpdate() local
31 backupList.add(p.rebuild(editables)); in tryUpdate()
35 for(int i = backupList.size() - 1; i >= 0; --i) in tryUpdate()
38 instance.restore(backupList.get(i)); in tryUpdate()
H A DNodes.java127 java.util.List<Node.Backup> backupList = new java.util.ArrayList<>(); in rebuild() local
135 backupList.add(node.rebuild(editables)); in rebuild()
139 for(int i = backupList.size() - 1; i >= 0; --i) in rebuild()
141 ((Node)_children.get(i)).restore(backupList.get(i)); in rebuild()
/dports/cad/cura/Cura-58bae31/plugins/CuraDrive/src/qml/pages/
H A DBackupsPage.qml43 visible: backupList.model.length == 0
51 id: backupList
65 visible: backupList.model.length > 4
72 showInfoButton: backupList.model.length > 4
/dports/sysutils/backuppc/BackupPC-3.3.2/lib/BackupPC/CGI/
H A DDirHistory.pm75 my @backupList = $view->backupList($share, $dir);
76 foreach $i ( @backupList ) {
93 foreach $i ( @backupList ) {
/dports/sysutils/backuppc-devel/backuppc-cae051c/dist/BackupPC-4.3.3.20200531/lib/BackupPC/CGI/
H A DDirHistory.pm74 my @backupList = $view->backupList($share, $dir);
75 foreach $i ( @backupList ) {
101 foreach $i ( @backupList ) {
/dports/sysutils/backuppc-devel/backuppc-cae051c/lib/BackupPC/CGI/
H A DDirHistory.pm74 my @backupList = $view->backupList($share, $dir);
75 foreach $i ( @backupList ) {
101 foreach $i ( @backupList ) {
/dports/sysutils/backuppc4/BackupPC-4.4.0/lib/BackupPC/CGI/
H A DDirHistory.pm76 my @backupList = $view->backupList($share, $dir);
77 foreach $i ( @backupList ) {
105 foreach $i ( @backupList ) {
/dports/databases/pgbackrest/pgbackrest-release-2.35/src/command/verify/
H A Dverify.c112 StringList *backupList; // List of backups to verify member
823 while (!strLstEmpty(jobData->backupList)) in verifyBackup()
836 .backupLabel = strDup(strLstGet(jobData->backupList, 0)), in verifyBackup()
862 strLstRemoveIdx(jobData->backupList, 0); in verifyBackup()
998 strLstRemoveIdx(jobData->backupList, 0); in verifyBackup()
1021 strLstRemoveIdx(jobData->backupList, 0); in verifyBackup()
1149 if (!strLstEmpty(backupList)) in verifySetBackupCheckArchive()
1152 String *backupLabel = strLstGet(backupList, strLstSize(backupList) - 1); in verifySetBackupCheckArchive()
1453 jobData.backupList = strLstSort( in verifyProcess()
1467 if (!strLstEmpty(jobData.archiveIdList) || !strLstEmpty(jobData.backupList)) in verifyProcess()
[all …]
/dports/cad/cura/Cura-58bae31/plugins/CuraDrive/src/qml/components/
H A DBackupList.qml12 property alias model: backupList.model
17 id: backupList
/dports/databases/pgbackrest/pgbackrest-release-2.35/src/command/expire/
H A Dexpire.c60 …StringList *backupList = strLstSort(infoBackupDataDependentList(infoBackup, backupLabel), sortOrde… in expireBackup() local
63 for (unsigned int backupIdx = 0; backupIdx < strLstSize(backupList); backupIdx++) in expireBackup()
65 String *removeBackupLabel = strLstGet(backupList, backupIdx); in expireBackup()
805 StringList *backupList = strLstSort( in removeExpiredBackup() local
818 … STORAGE_REPO_BACKUP "/%s/" BACKUP_MANIFEST_FILE, strZ(strLstGet(backupList, backupIdx))); in removeExpiredBackup()
826 if (!strBeginsWith(strLstGet(backupList, backupIdx), strSubN(adhocBackupLabel, 0, 16))) in removeExpiredBackup()
845 for (; backupIdx < strLstSize(backupList); backupIdx++) in removeExpiredBackup()
847 if (!strLstExists(currentBackupList, strLstGet(backupList, backupIdx))) in removeExpiredBackup()
851 strZ(strLstGet(backupList, backupIdx))); in removeExpiredBackup()
857 …epoIdxWrite(repoIdx), strNewFmt(STORAGE_REPO_BACKUP "/%s", strZ(strLstGet(backupList, backupIdx))), in removeExpiredBackup()
/dports/net/gscloud/gscloud-0.11.0/vendor/github.com/gridscale/gsclient-go/v3/examples/
H A Dstoragebackupschedule.go102 backupList, err := client.GetStorageBackupList(emptyCtx, cStorage.ObjectUUID)
108 "backups": backupList,
/dports/databases/pgbackrest/pgbackrest-release-2.35/src/info/
H A DinfoBackup.c622 StringList *backupList = strLstSort( in infoBackupLoadFileReconstruct() local
640 …StringList *backupList = strLstSort(infoBackupDataDependentList(infoBackup, backupLabel), sortOrde… in infoBackupLoadFileReconstruct() local
642 for (unsigned int backupIdx = 0; backupIdx < strLstSize(backupList); backupIdx++) in infoBackupLoadFileReconstruct()
644 String *removeBackup = strLstGet(backupList, backupIdx); in infoBackupLoadFileReconstruct()
657 for (unsigned int backupIdx = 0; backupIdx < strLstSize(backupList); backupIdx++) in infoBackupLoadFileReconstruct()
659 String *backupLabel = strLstGet(backupList, backupIdx); in infoBackupLoadFileReconstruct()
/dports/sysutils/backuppc/BackupPC-3.3.2/lib/BackupPC/
H A DView.pm353 sub backupList subroutine
356 my($i, @backupList);
374 push(@backupList, $i);
376 return @backupList;
/dports/sysutils/backuppc-devel/backuppc-cae051c/dist/BackupPC-4.3.3.20200531/lib/BackupPC/
H A DView.pm567 sub backupList subroutine
570 my($i, @backupList);
594 unshift(@backupList, $i);
604 unshift(@backupList, $i);
615 unshift(@backupList, $i);
619 return @backupList;
/dports/databases/pgbackrest/pgbackrest-release-2.35/test/src/module/command/
H A DverifyTest.c650 StringList *backupList= strLstNew(); in testRun() local
651 strLstAddZ(backupList, "20181119-152138F"); in testRun()
652 strLstAddZ(backupList, "20181119-152900F"); in testRun()
660 strLstAddZ(backupList, "20181119-153000F"); in testRun()
664 … verifySetBackupCheckArchive(backupList, backupInfo, archiveIdList, pgHistory, &errTotal), in testRun()
672 … verifySetBackupCheckArchive(backupList, backupInfo, archiveIdList, pgHistory, &errTotal), in testRun()
/dports/sysutils/backuppc-devel/backuppc-cae051c/lib/BackupPC/
H A DView.pm567 sub backupList subroutine
570 my($i, @backupList);
594 unshift(@backupList, $i);
604 unshift(@backupList, $i);
615 unshift(@backupList, $i);
619 return @backupList;
/dports/sysutils/backuppc4/BackupPC-4.4.0/lib/BackupPC/
H A DView.pm566 sub backupList subroutine
569 my($i, @backupList);
592 unshift(@backupList, $i);
602 unshift(@backupList, $i);
613 unshift(@backupList, $i);
617 return @backupList;
/dports/cad/fritzing/fritzing-app-0.9.2b/src/utils/
H A Dlockmanager.cpp149 void LockManager::checkLockedFiles(const QString & prefix, QFileInfoList & backupList, QHash<QStrin… in checkLockedFiles() argument
190 backupList << fileInfo; in checkLockedFiles()
H A Dlockmanager.h53 …static void checkLockedFiles(const QString & prefix, QFileInfoList & backupList, QHash<QString, Lo…
/dports/databases/pgbackrest/pgbackrest-release-2.35/src/command/info/
H A Dinfo.c146 …VariantList *backupList; // List of backups found for this … member
541 backupList( in backupList() function
738 backupList(backupSection, stanzaData, backupLabel, repoIdxMin, repoIdxMax); in stanzaInfoList()
777 for (unsigned int backupIdx = 0; backupIdx < varLstSize(dbGroup->backupList); backupIdx++) in formatTextBackup()
779 KeyValue *backupInfo = varKv(varLstGet(dbGroup->backupList, backupIdx)); in formatTextBackup()
972 .backupList = varLstNew(), in formatTextDb()
1036 varLstAdd(dbGroupInfo->backupList, varLstGet(backupSection, backupIdx)); in formatTextDb()
1067 else if (dbGroupInfo->archiveMin != NULL || !varLstEmpty(dbGroupInfo->backupList)) in formatTextDb()

12