Home
last modified time | relevance | path

Searched refs:blackList (Results 1 – 25 of 191) sorted by relevance

12345678

/dports/net/pimcommon/pimcommon-21.12.3/src/pimcommonakonadi/addressline/blacklistbaloocompletion/autotests/
H A Dblacklistbalooemaillisttest.cpp24 QVERIFY(blackList.count() == 0); in shouldHaveDefaultValue()
31 QCOMPARE(blackList.count(), 3); in shouldFillListEmail()
46 blackList.setEmailBlackList(emails); in shouldFillListWithAlreadyBlackListedEmail()
49 QCOMPARE(blackList.count(), 3); in shouldFillListWithAlreadyBlackListedEmail()
65 blackList.setEmailBlackList(emails); in shouldReturnChangedItems()
77 blackList.setEmailBlackList(emails); in shouldNotAddDuplicateEmails()
80 QCOMPARE(blackList.count(), 2); in shouldNotAddDuplicateEmails()
91 QCOMPARE(blackList.count(), 1); in shouldExcludeDomain()
97 QCOMPARE(blackList.count(), 1); in shouldExcludeDomain()
106 QCOMPARE(blackList.count(), 1); in shouldAvoidSameEmailWithDifferentCase()
[all …]
/dports/x11-toolkits/ctk/CTK-2018-10-29/Plugins/org.commontk.eventadmin/handler/
H A DctkEABlacklistingHandlerTasks.tpp26 ctkEABlackList<BlackList>* blackList,
29 : blackList(blackList), context(context),
33 checkNull(blackList, "BlackList");
44 delete blackList;
69 if (!blackList->contains(ref)
89 blackList->add(ref);
102 blackList->add(handlerRef);
114 ctkEventHandler* result = (blackList->contains(handlerRef)) ? 0
129 if(!blackList->contains(handlerRef) &&
H A DctkEACleanBlackList.cpp28 blackList.insert(ref); in add()
36 foreach (ctkServiceReference ref, blackList) in contains()
40 blackList.remove(ref); in contains()
44 return blackList.contains(ref); in contains()
/dports/databases/grass7/grass-7.8.6/lib/python/script/
H A Dtask.py56 def __init__(self, path=None, blackList=None): argument
66 if blackList:
67 self.blackList = blackList
69 self.blackList = {'enabled': False, 'items': {}}
307 def __init__(self, tree, task=None, blackList=None): argument
312 if blackList:
313 self.task.blackList = blackList
375 if self.task.blackList['enabled'] and \
407 if self.task.blackList['enabled'] and \
511 def parse_interface(name, parser=processTask, blackList=None): argument
[all …]
/dports/biology/jalview/jalview/src/jalview/workers/
H A DAlignCalcManager.java46 private volatile List<Class<? extends AlignCalcWorkerI>> blackList; field in AlignCalcManager
71 blackList = Collections.synchronizedList( in AlignCalcManager()
164 synchronized (blackList) in disableWorker()
166 blackList.add(worker.getClass()); in disableWorker()
173 synchronized (blackList) in isDisabled()
175 return blackList.contains(worker.getClass()); in isDisabled()
305 synchronized (blackList) in enableWorker()
307 blackList.remove(worker.getClass()); in enableWorker()
385 blackList.remove(worker.getClass()); in removeWorkerForAnnotation()
/dports/net/pimcommon/pimcommon-21.12.3/src/pimcommonakonadi/addressline/blacklistbaloocompletion/
H A Dblacklistbalooemailcompletionwidget.cpp215 QStringList blackList = group.readEntry("BalooBackList", QStringList()); in slotSaveChanges() local
217 util.initialBlackList(blackList); in slotSaveChanges()
219 blackList = util.createNewBlackList(); in slotSaveChanges()
220 group.writeEntry("BalooBackList", blackList); in slotSaveChanges()
222 mEmailList->setEmailBlackList(blackList); in slotSaveChanges()
246 QStringList blackList = group.readEntry("BalooBackList", QStringList()); in save() local
248 util.initialBlackList(blackList); in save()
250 blackList = util.createNewBlackList(); in save()
251 group.writeEntry("BalooBackList", blackList); in save()
H A Dblacklistbalooemailutil.cpp19 void BlackListBalooEmailUtil::initialBlackList(const QStringList &blackList) in initialBlackList() argument
21 mInitialList = blackList; in initialBlackList()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/engine/filters/
H A DReadGroupBlackListReadFilter.java35 public List<String> blackList = new ArrayList<>(); field in ReadGroupBlackListReadFilter
54 this.blackList.addAll(blackLists); in ReadGroupBlackListReadFilter()
60 for (String blackList : this.blackList) { in parseReadGroupFilters()
61 addFilters(filters, blackList); in parseReadGroupFilters()
/dports/www/phalcon4/cphalcon-4.1.1/tests/unit/Helper/Arr/
H A DBlackListCest.php43 $blackList = [
57 $actual = Arr::blackList($value, $blackList);
/dports/audio/libinstpatch/libinstpatch-1.1.6/tests/
H A DTest.py69 def compareItems (item1, item2, recurse=True, blackList=()): argument
78 blprops = [propname for typ, propname in blackList if isinstance (item1, typ)]
94 …compareItems (val1, val2, recurse=False, blackList=blackList) # Don't recurse into object fields…
131 compareItems (children1[i], children2[i], blackList=blackList)
/dports/biology/py-deeptools/deepTools-3.5.1/deeptools/
H A DsumCoveragePerBin.py54 blackList = None
56 blackList = GTF(self.blackListFileName)
68 if blackList and blackList.findOverlaps(chrom, reg[0], reg[1]):
75 if blackList and reg[0] > 0 and extension > 0:
76 o = blackList.findOverlaps(chrom, regStart, reg[0])
79 o = blackList.findOverlaps(chrom, reg[1], regEnd)
H A DcountReadsPerBin.py471 blackList = None
473 blackList = GTF(self.blackListFileName)
489 … if blackList is not None and blackList.findOverlaps(chrom, i, i + self.binLength):
591 blackList = None
593 blackList = GTF(self.blackListFileName)
608 if blackList and blackList.findOverlaps(chrom, reg[0], reg[1]):
615 if blackList and reg[0] > 0 and extension > 0:
616 o = blackList.findOverlaps(chrom, regStart, reg[0])
619 o = blackList.findOverlaps(chrom, reg[1], regEnd)
/dports/net/pimcommon/pimcommon-21.12.3/src/pimcommonakonadi/addressline/autotests/
H A Dbaloocompletionemailtest.cpp52 QStringList blackList; in shouldReturnSameListIfBlackListDoesntInterceptEmail() local
53 blackList << QStringLiteral("bla"); in shouldReturnSameListIfBlackListDoesntInterceptEmail()
54 blackList << QStringLiteral("bla2"); in shouldReturnSameListIfBlackListDoesntInterceptEmail()
55 blackList << QStringLiteral("bla3"); in shouldReturnSameListIfBlackListDoesntInterceptEmail()
56 blackList << QStringLiteral("bla4"); in shouldReturnSameListIfBlackListDoesntInterceptEmail()
57 completion.setBlackList(blackList); in shouldReturnSameListIfBlackListDoesntInterceptEmail()
/dports/www/falkon/falkon-3.2.0/src/lib/cookies/
H A Dcookiemanager.cpp49 ui->blackList->setLayoutDirection(Qt::LeftToRight); in CookieManager()
75 ui->blackList->addItems(settings.value("blacklist", QStringList()).toStringList()); in CookieManager()
89 ui->blackList->sortItems(Qt::AscendingOrder); in CookieManager()
196 if (!ui->blackList->findItems(server, Qt::MatchFixedString).isEmpty()) { in addWhitelist()
228 if (ui->blackList->findItems(server, Qt::MatchFixedString).isEmpty()) { in addBlacklist()
229 ui->blackList->addItem(server); in addBlacklist()
255 delete ui->blackList->currentItem(); in removeBlacklist()
266 else if (ui->blackList->hasFocus()) { in deletePressed()
342 for (int i = 0; i < ui->blackList->count(); ++i) { in closeEvent()
343 blacklist.append(ui->blackList->item(i)->text()); in closeEvent()
/dports/multimedia/webcamoid/webcamoid-8.8.0/StandAlone/share/qml/
H A DPluginConfig.qml56 var blackList = globalElement.pluginsBlackList()
58 for (var path in blackList) {
60 path: blackList[path],
232 var blackList = globalElement.pluginsBlackList()
234 var index = blackList.indexOf(path)
238 blackList.push(path)
241 blackList.splice(index, 1)
244 globalElement.setPluginsBlackList(blackList)
/dports/devel/hadoop/hadoop-1.2.1/src/test/org/apache/hadoop/security/
H A DTestGroupsCaching.java59 private static Set<String> blackList = new HashSet<String>(); field in TestGroupsCaching.FakeGroupMapping
63 if (blackList.contains(user)) { in getGroups()
77 blackList.clear(); in clearBlackList()
87 blackList.add(user); in addToBlackList()
/dports/graphics/digikam/digikam-7.4.0/core/dplugins/generic/tools/mjpegstream/
H A Dmjpegserver.cpp97 d->blackList = lst; in setBlackList()
100 QStringList MjpegServer::blackList() const in blackList() function in DigikamGenericMjpegStreamPlugin::MjpegServer
102 return d->blackList; in blackList()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/clangcodemodel/
H A Dclangdiagnosticfilter.cpp51 static const Utf8StringVector blackList{ in isBlackListedHeaderDiagnostic() local
56 return isHeaderFile && blackList.contains(diagnostic.text); in isBlackListedHeaderDiagnostic()
61 static const Utf8StringVector blackList{ in isBlackListedQtDiagnostic() local
71 return blackList.contains(diagnostic.text); in isBlackListedQtDiagnostic()
/dports/www/falkon/falkon-3.2.0/src/plugins/FlashCookieManager/
H A Dfcm_dialog.cpp49 ui->blackList->setLayoutDirection(Qt::LeftToRight); in FCM_Dialog()
269 ui->blackList->clear(); in refreshFilters()
272 …ui->blackList->addItems(m_manager->readSettings().value(QL1S("flashCookiesBlacklist")).toStringLis… in refreshFilters()
288 if (!ui->blackList->findItems(origin, Qt::MatchFixedString).isEmpty()) { in addWhitelist()
321 if (ui->blackList->findItems(origin, Qt::MatchFixedString).isEmpty()) { in addBlacklist()
322 ui->blackList->addItem(origin); in addBlacklist()
328 delete ui->blackList->currentItem(); in removeBlacklist()
339 else if (ui->blackList->hasFocus()) { in deletePressed()
409 for (int i = 0; i < ui->blackList->count(); ++i) { in closeEvent()
410 flashBlacklist.append(ui->blackList->item(i)->text()); in closeEvent()
/dports/cad/sumo/sumo-1.2.0/tools/net/
H A Dnetdiff.py321 def writeCreated(self, file, whiteList=None, blackList=None): argument
322 self.write_tagids(file, self.filterTags(self.ids_created, whiteList, blackList), True)
325 or (blackList is not None and tag in blackList)):
332 def writeChanged(self, file, whiteList=None, blackList=None): argument
334 self.write_tagids(file, self.filterTags(tagids_changed, whiteList, blackList), False)
382 def filterTags(self, tagids, whiteList, blackList): argument
385 elif blackList is not None:
386 return [tagid for tagid in tagids if tagid[0] not in blackList]
480 attributeStore.writeCreated(diff_file, blackList=[TAG_TLL])
482 attributeStore.writeChanged(diff_file, blackList=[TAG_TLL])
/dports/games/hedgewars-server/hedgewars-src-1.0.0/gameServer/OfficialServer/
H A DGameReplayStore.hs40 pickReplayFile p blackList = do
48 notBlacklisted = flip notElem blackList
64 loadReplay p blackList = E.handle (\(e :: SomeException) -> warningM "REPLAYS" "Problems reading re…
65 fileName <- pickReplayFile p blackList
/dports/games/hedgewars/hedgewars-src-1.0.0/gameServer/OfficialServer/
H A DGameReplayStore.hs40 pickReplayFile p blackList = do
48 notBlacklisted = flip notElem blackList
64 loadReplay p blackList = E.handle (\(e :: SomeException) -> warningM "REPLAYS" "Problems reading re…
65 fileName <- pickReplayFile p blackList
/dports/multimedia/webcamoid/webcamoid-8.8.0/StandAlone/src/
H A Dpluginconfigs.cpp90 auto blackList = AkElement::pluginsBlackList(); in loadProperties() local
102 if (!blackList.contains(path)) in loadProperties()
103 blackList << path; in loadProperties()
118 if (!blackList.contains(path)) in loadProperties()
119 blackList << path; in loadProperties()
125 AkElement::setPluginsBlackList(blackList); in loadProperties()
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/client/gui/
H A DNotificationChannel.java50 boolean blackList, String defaultTypes) { in NotificationChannel() argument
53 if (blackList) { in NotificationChannel()
72 setTypeFiltering(type, !blackList); in NotificationChannel()
/dports/deskutils/lxqt-notificationd/lxqt-notificationd-1.0.0/config/
H A Dadvancedsettings.cpp81 QString blackList = blackListEdit->text(); in save() local
82 if (!blackList.isEmpty()) in save()
84 QStringList l = blackList.split(QL1S(","), Qt::SkipEmptyParts); in save()

12345678