Home
last modified time | relevance | path

Searched refs:denylist (Results 1 – 25 of 327) sorted by relevance

12345678910>>...14

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/devil/devil/android/
H A Ddevice_denylist.py26 denylist = dict()
28 return denylist
32 denylist = json.load(f)
37 if not isinstance(denylist, dict):
40 denylist = dict()
42 return denylist
44 def Write(self, denylist): argument
52 json.dump(denylist, f)
70 denylist = self.Read()
71 denylist.update(device_dicts)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/
H A DPRESUBMIT.py18 denylist = None
25 denylist=None): argument
26 denylist = tuple(denylist or input_api.DEFAULT_FILES_TO_SKIP)
28 denylist)
46 denylist = tuple(denylist or input_api.DEFAULT_FILES_TO_SKIP)
93 denylist=None): argument
94 denylist = tuple(denylist or input_api.DEFAULT_FILES_TO_SKIP)
233 denylist = tuple(denylist or input_api.DEFAULT_FILES_TO_SKIP)
282 denylist=None): argument
283 denylist = tuple(denylist or input_api.DEFAULT_FILES_TO_SKIP)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/devil/devil/android/tools/
H A Ddevice_recovery.py147 if denylist:
151 if denylist:
160 if denylist:
164 if denylist:
199 if denylist:
200 denylist.Reset()
216 if denylist:
217 denylist.Extend([serial], reason='USB failure')
220 if denylist:
221 denylist.Extend([serial], reason='offline')
[all …]
H A Ddevice_status.py34 def IsDenylisted(serial, denylist): argument
35 return denylist and serial in denylist.Read()
38 def _BatteryStatus(device, denylist): argument
50 if denylist:
60 def DeviceStatus(devices, denylist): argument
106 if not IsDenylisted(serial, denylist):
139 if denylist:
145 if denylist:
148 elif denylist:
149 denylist.Extend([serial],
[all …]
H A Ddevice_monitor.py171 def get_all_status(denylist): argument
177 healthy_devices = device_utils.DeviceUtils.HealthyDevices(denylist)
186 if denylist:
187 for device, reason in denylist.Read().iteritems():
218 denylist = (device_denylist.Denylist(args.denylist_file)
225 status_dict = get_all_status(denylist)
H A Dprovision_devices.py90 denylist = (device_denylist.Denylist(denylist_file)
95 devices = script_common.GetDevices(devices, denylist)
98 if denylist:
99 logging.error('Local device denylist: %s', denylist.Read())
139 parallel_devices.pMap(ProvisionDevice, steps, denylist, reboot_timeout)
141 denylisted_devices = denylist.Read() if denylist else []
150 def ProvisionDevice(device, steps, denylist, reboot_timeout=None): argument
172 if denylist:
173 denylist.Extend([str(device)], reason='provision_timeout')
179 if denylist:
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/telemetry/telemetry/internal/platform/
H A Dandroid_device.py37 def GetAllConnectedDevices(cls, denylist): argument
38 device_serials = GetDeviceSerials(denylist)
46 def _ListSerialsOfHealthyOnlineDevices(denylist): argument
51 def GetDeviceSerials(denylist): argument
57 device_serials = _ListSerialsOfHealthyOnlineDevices(denylist)
78 denylist = device_denylist.Denylist(
81 denylist = None
87 devices = AndroidDevice.GetAllConnectedDevices(denylist)
143 denylist = None
145 denylist = device_denylist.Denylist(
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/viz/
H A Dpresubmit_checks.py10 def CheckChangeLintsClean(input_api, output_api, allowlist, denylist=None): argument
16 def CheckAsserts(input_api, output_api, allowlist, denylist=None): argument
17 denylist = tuple(denylist or input_api.DEFAULT_FILES_TO_SKIP)
35 allowlist, denylist=None): argument
36 denylist = tuple(denylist or input_api.DEFAULT_FILES_TO_SKIP)
39 denylist)
83 denylist=None): argument
84 denylist = tuple(denylist or input_api.DEFAULT_FILES_TO_SKIP)
125 denylist=None): argument
247 denylist=None): argument
[all …]
/dports/mail/qsf/qsf-1.2.7/src/spam/
H A Dallowlist.c20 static char *spam_allowlist__token(char *address, int denylist) in spam_allowlist__token() argument
30 if (denylist) { in spam_allowlist__token()
60 key = spam_allowlist__token(addrcopy, denylist); in spam_allowlist__lctoken()
73 static int spam_allowlist__domatch(spam_t spam, int denylist, in spam_allowlist__domatch() argument
84 key = spam_allowlist__lctoken(address, denylist); in spam_allowlist__domatch()
93 denylist ? _("deny-list match: %s") : in spam_allowlist__domatch()
99 key = spam_allowlist__token(address, denylist); in spam_allowlist__domatch()
108 denylist ? _("deny-list match: %s") : in spam_allowlist__domatch()
131 key = spam_allowlist__lctoken(address, denylist); in spam_allowlist__doadd()
163 key = spam_allowlist__token(address, denylist); in spam_allowlist__doremove()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/build/android/
H A Dadb_install_apk.py101 denylist = (device_denylist.Denylist(args.denylist_file)
103 devices = device_utils.DeviceUtils.HealthyDevices(denylist=denylist,
118 if denylist:
119 denylist.Extend([str(device)], reason='install_failure')
123 if denylist:
124 denylist.Extend([str(device)], reason='install_timeout')
H A Dprovision_devices.py66 denylist = (device_denylist.Denylist(args.denylist_file)
69 d for d in device_utils.DeviceUtils.HealthyDevices(denylist)
80 parallel_devices.pMap(ProvisionDevice, denylist, args)
83 denylisted_devices = denylist.Read() if denylist else []
92 def ProvisionDevice(device, denylist, options): argument
138 if denylist:
139 denylist.Extend([str(device)], reason='provision_timeout')
145 if denylist:
146 denylist.Extend([str(device)], reason='provision_failure')
/dports/lang/v8/v8-9.6.180.12/build/android/
H A Dadb_install_apk.py104 denylist = (device_denylist.Denylist(args.denylist_file)
106 devices = device_utils.DeviceUtils.HealthyDevices(denylist=denylist,
121 if denylist:
122 denylist.Extend([str(device)], reason='install_failure')
126 if denylist:
127 denylist.Extend([str(device)], reason='install_timeout')
H A Dprovision_devices.py66 denylist = (device_denylist.Denylist(args.denylist_file)
69 d for d in device_utils.DeviceUtils.HealthyDevices(denylist)
80 parallel_devices.pMap(ProvisionDevice, denylist, args)
83 denylisted_devices = denylist.Read() if denylist else []
92 def ProvisionDevice(device, denylist, options): argument
138 if denylist:
139 denylist.Extend([str(device)], reason='provision_timeout')
145 if denylist:
146 denylist.Extend([str(device)], reason='provision_failure')
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/android/
H A Dadb_install_apk.py106 denylist = (device_denylist.Denylist(args.denylist_file)
108 devices = device_utils.DeviceUtils.HealthyDevices(denylist=denylist,
123 if denylist:
124 denylist.Extend([str(device)], reason='install_failure')
128 if denylist:
129 denylist.Extend([str(device)], reason='install_timeout')
/dports/net/hblock/hblock-3.2.3/resources/tests/
H A Dtest-main-feature-denylist.sh20 actual="$(runInTestShell "${SCRIPT_DIR:?}/../../hblock" -qO- -D "${SCRIPT_DIR:?}/denylist.txt")"
27 …actual="$(runInTestShell "${SCRIPT_DIR:?}/../../hblock" -qO- --denylist="${SCRIPT_DIR:?}/denylist.…
48 …actual="$(cat -- "${SCRIPT_DIR:?}/denylist.txt" | runInTestShell "${SCRIPT_DIR:?}/../../hblock" -q…
62 …actual="$(set -a; HBLOCK_DENYLIST_FILE="${SCRIPT_DIR:?}/denylist.txt" runInTestShell "${SCRIPT_DIR…
/dports/emulators/qemu-devel/qemu-de8ed1055c2ce18c95f597eb10df360dcb534f99/softmmu/
H A Dqemu-seccomp.c48 static const struct QemuSeccompSyscall denylist[] = { variable
172 for (i = 0; i < ARRAY_SIZE(denylist); i++) { in seccomp_start()
174 if (!(seccomp_opts & denylist[i].set)) { in seccomp_start()
178 action = qemu_seccomp_get_action(denylist[i].set); in seccomp_start()
179 rc = seccomp_rule_add_array(ctx, action, denylist[i].num, in seccomp_start()
180 denylist[i].narg, denylist[i].arg_cmp); in seccomp_start()
/dports/emulators/qemu/qemu-6.2.0/softmmu/
H A Dqemu-seccomp.c48 static const struct QemuSeccompSyscall denylist[] = { variable
172 for (i = 0; i < ARRAY_SIZE(denylist); i++) { in seccomp_start()
174 if (!(seccomp_opts & denylist[i].set)) { in seccomp_start()
178 action = qemu_seccomp_get_action(denylist[i].set); in seccomp_start()
179 rc = seccomp_rule_add_array(ctx, action, denylist[i].num, in seccomp_start()
180 denylist[i].narg, denylist[i].arg_cmp); in seccomp_start()
/dports/emulators/qemu60/qemu-6.0.0/softmmu/
H A Dqemu-seccomp.c48 static const struct QemuSeccompSyscall denylist[] = { variable
178 for (i = 0; i < ARRAY_SIZE(denylist); i++) { in seccomp_start()
180 if (!(seccomp_opts & denylist[i].set)) { in seccomp_start()
184 action = qemu_seccomp_get_action(denylist[i].set); in seccomp_start()
185 rc = seccomp_rule_add_array(ctx, action, denylist[i].num, in seccomp_start()
186 denylist[i].narg, denylist[i].arg_cmp); in seccomp_start()
/dports/net-im/p5-Net-AOLIM/Net-AOLIM/
H A Dexample.pl191 my @denylist;
196 @denylist = $foo->current_denies;
198 map {$temp{$_} = 1;} @denylist;
201 @denylist = keys %temp;
205 $foo->add_im_deny(@denylist);
/dports/www/moodle310/moodle/filter/tex/
H A Dlib.php72 $denylist = [
87 $denylist = array_map(function($value){
89 }, $denylist);
97 $texexp = preg_replace_callback($denylist,
/dports/www/moodle311/moodle/filter/tex/
H A Dlib.php77 $denylist = [
92 $denylist = array_map(function($value){
94 }, $denylist);
102 $texexp = preg_replace_callback($denylist,
/dports/www/moodle39/moodle/filter/tex/
H A Dlib.php64 $denylist = [
79 $denylist = array_map(function($value){
81 }, $denylist);
89 $texexp = preg_replace_callback($denylist,
/dports/www/trafficserver/trafficserver-9.1.1/doc/developer-guide/plugins/plugin-management/
H A Dlogging-api.en.rst62 :ref:`developer-plugins-examples-denylist-code` section.
74 TSReturnCode error = TSTextLogObjectCreate("denylist",
77 The new log is named ``denylist.log``. Each entry written to the log
89 printf("denylist plugin: error %d while creating log\n", error);
92 #. The :ref:`developer-plugins-examples-denylist` matches the host portion of
105 sites (such as ``sites[i]``), then the plugin writes a denylist
106 entry to ``denylist.log``:
/dports/textproc/ibus/ibus-1.5.24/engine/
H A Dgensimple.py76 denylist=None, author=None, first=False): argument
80 self.__denylist = denylist
229 def __init__(self, path, iso639=None, denylist='', version='', exec='', argument
233 self.__denylist = denylist
329 denylist = []
340 denylist.append(entry)
342 return denylist
385 denylist = parse_denylist('%s/%s' % ( mydir, 'denylist.txt')) variable
386 xml = GenerateEngineXML(input, iso639, denylist, version, exec_path, first)
/dports/editors/libreoffice/libreoffice-7.2.6.2/postprocess/qa/
H A Dservices.cxx141 std::vector<OUString> denylist; in test() local
142 denylist.emplace_back("com.sun.star.comp.report.OReportDefinition"); in test()
146 denylist.emplace_back("SwXMailMerge"); in test()
268 if (std::find(denylist.begin(), denylist.end(), i.first) in test()
269 == denylist.end()) in test()
465 static std::set<std::pair<OUString, OUString>> const denylist{ in createInstance() local
492 if (denylist.find({implementationName, prop->getName()}) != denylist.end()) { in createInstance()

12345678910>>...14