Home
last modified time | relevance | path

Searched refs:test_site (Results 1 – 25 of 55) sorted by relevance

123

/dports/www/firefox/firefox-99.0/testing/performance/
H A Dhooks_recording.py63 sites = [test_site for test_site in site_list if __should_record(test_site)]
85 test_site = next(next_site)
86 print("Next site: %s" % test_site)
99 test_site["name"],
112 add_option(env, "browsertime.testName", test_site.get("name"))
113 add_option(env, "browsertime.testType", test_site.get("type", "pageload"))
114 add_option(env, "browsertime.login", test_site.get("login", "false"))
116 prefs = test_site.get("preferences", {})
120 second_url = test_site.get("secondary_url", None)
124 inject_deterministic = test_site.get("inject_deterministic", True)
[all …]
/dports/www/firefox-esr/firefox-91.8.0/testing/performance/
H A Dhooks_recording.py34 sites = [test_site for test_site in site_list if not test_site.get("login")]
53 test_site = next(next_site)
54 print("Next site: %s" % test_site)
67 test_site["name"],
78 add_option(env, "browsertime.url", test_site.get("test_url"), overwrite=True)
80 add_option(env, "browsertime.testName", test_site.get("name"))
82 print("Recording %s to file: %s" % (test_site.get("url"), recording_file))
/dports/mail/thunderbird/thunderbird-91.8.0/testing/performance/
H A Dhooks_recording.py34 sites = [test_site for test_site in site_list if not test_site.get("login")]
53 test_site = next(next_site)
54 print("Next site: %s" % test_site)
67 test_site["name"],
78 add_option(env, "browsertime.url", test_site.get("test_url"), overwrite=True)
80 add_option(env, "browsertime.testName", test_site.get("name"))
82 print("Recording %s to file: %s" % (test_site.get("url"), recording_file))
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/netbox/netbox/tests/integration/
H A Dnetbox-deploy.py101 test_site = nb.dcim.sites.get(slug="test-site") variable
126 "site": test_site.id,
132 "site": test_site.id,
149 {"name": "Data", "vid": 200, "site": test_site.id},
154 "site": test_site.id,
272 "site": test_site.id,
279 "site": test_site.id,
293 "site": test_site.id,
299 "site": test_site.id,
390 "site": test_site.id,
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/test/enterprise/e2e/policy/popups_allowed/
H A Dpopups_allowed.py31 test_site = 'www.dummysoftware.com'
32 self.SetPolicy(self.win_config['dc'], r'PopupsAllowedForUrls\1', test_site,
35 logging.info('Enabled Allow pop-ups on' + test_site)
48 test_site = 'www.google.com'
49 self.SetPolicy(self.win_config['dc'], r'PopupsAllowedForUrls\1', test_site,
52 logging.info('Enabled Allow pop-ups on' + test_site)
/dports/www/py-scrapy/Scrapy-2.5.1/scrapy/utils/
H A Dtestsite.py11 self.site = reactor.listenTCP(0, test_site(), interface="127.0.0.1")
29 def test_site(): function
42 port = reactor.listenTCP(0, test_site(), interface="127.0.0.1")
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/betr/tests/
H A Dtest_driver.cxx5 DECLARE(test_site);
16 REGISTER(test_site); in register_tests()
H A Dtest_site.cxx16 void test_site() in test_site() function
68 TESTMAIN(test_site);
/dports/www/py-django-countries/django-countries-5.3/django_countries/tests/
H A Dtest_admin_filters.py10 test_site = admin.AdminSite(name='test-admin') variable
19 test_site.register(models.Person, PersonAdmin)
45 self.person_admin = PersonAdmin(models.Person, test_site)
/dports/science/py-pymatgen/pymatgen-2022.0.15/pymatgen/analysis/
H A Dbond_valence.py270 test_site = sites[0]
271 nn = structure.get_neighbors(test_site, self.max_radius)
272 prob = self._calc_site_probabilities(test_site, nn)
282 test_site = sites[0]
283 nn = structure.get_neighbors(test_site, self.max_radius)
284 prob = self._calc_site_probabilities_unordered(test_site, nn)
288 for (elsp, occ) in get_z_ordered_elmap(test_site.species):
H A Dewald.py158 for test_site in sub_structure:
159 frac_diff = abs(np.array(site.frac_coords) - np.array(test_site.frac_coords)) % 1
162 return test_site
/dports/www/zola/zola-0.15.2/
H A D.gitignore3 test_site/public
H A D.dockerignore8 test_site/public
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/sofia-sip/libsofia-sip-ua/nth/
H A Dtest_nth.c128 static int test_site(site_t *t,
160 s->s_ns = nth_site_create(pns, test_site, s, in site_create()
372 TEST_1(!nth_site_create(NULL, test_site, s, in test_nth_server_api()
383 TEST_VOID(nth_site_bind(NULL, test_site, s)); in test_nth_server_api()
396 static int test_site(site_t *s, in test_site() function
/dports/net/sofia-sip/sofia-sip-1.13.4/libsofia-sip-ua/nth/
H A Dtest_nth.c128 static int test_site(site_t *t,
160 s->s_ns = nth_site_create(pns, test_site, s, in site_create()
372 TEST_1(!nth_site_create(NULL, test_site, s, in test_nth_server_api()
383 TEST_VOID(nth_site_bind(NULL, test_site, s)); in test_nth_server_api()
396 static int test_site(site_t *s, in test_site() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/webauthn/
H A Dchrome_authenticator_request_delegate.cc650 const GURL test_site("https://webauthndemo.appspot.com"); in ShouldPermitCableExtension() local
651 DCHECK(test_site.is_valid()); in ShouldPermitCableExtension()
652 return origin.IsSameOriginWith(url::Origin::Create(test_site)); in ShouldPermitCableExtension()
/dports/net-mgmt/netbox/netbox-3.0.12/netbox/circuits/tests/
H A Dtest_filtersets.py95 def test_site(self): member in ProviderTestCase
258 def test_site(self): member in CircuitTestCase
357 def test_site(self): member in CircuitTerminationTestCase
/dports/science/py-pymatgen/pymatgen-2022.0.15/pymatgen/analysis/tests/
H A Dtest_ewald.py122 def test_site(self): member in EwaldMinimizerTest
/dports/net-mgmt/netbox/netbox-3.0.12/netbox/dcim/tests/
H A Dtest_filtersets.py292 def test_site(self): member in LocationTestCase
458 def test_site(self): member in RackTestCase
562 def test_site(self): member in RackReservationTestCase
1357 def test_site(self): member in DeviceTestCase
1581 def test_site(self): member in ConsolePortTestCase
1708 def test_site(self): member in ConsoleServerPortTestCase
1843 def test_site(self): member in PowerPortTestCase
1974 def test_site(self): member in PowerOutletTestCase
2151 def test_site(self): member in InterfaceTestCase
2305 def test_site(self): member in FrontPortTestCase
[all …]
/dports/science/py-pymatgen/pymatgen-2022.0.15/pymatgen/transformations/tests/
H A Dtest_standard_transformations.py366 test_site = PeriodicSite("Si4+", c[2], l)
369 self.assertTrue(test_site in output.sites)
/dports/net-mgmt/netbox/netbox-3.0.12/netbox/virtualization/tests/
H A Dtest_filtersets.py150 def test_site(self): member in ClusterTestCase
344 def test_site(self): member in VirtualMachineTestCase
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/browser/renderer_host/
H A Drender_process_host_browsertest.cc546 GURL test_site = test_site_instance->GetSiteURL(); in IN_PROC_BROWSER_TEST_F() local
547 CustomStoragePartitionForSomeSites modified_client(test_site); in IN_PROC_BROWSER_TEST_F()
553 BrowserContext::GetStoragePartitionForSite(browser_context, test_site); in IN_PROC_BROWSER_TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/content/browser/renderer_host/
H A Drender_process_host_browsertest.cc557 GURL test_site = test_site_instance->GetSiteURL(); in IN_PROC_BROWSER_TEST_F() local
558 CustomStoragePartitionForSomeSites modified_client(test_site); in IN_PROC_BROWSER_TEST_F()
564 BrowserContext::GetStoragePartitionForSite(browser_context, test_site); in IN_PROC_BROWSER_TEST_F()
/dports/sysutils/py-salt/salt-3004.1/tests/
H A Dfilename_map.yml40 - pytests.unit.states.apache.test_site
/dports/net-im/py-matrix-synapse/synapse-1.50.2/
H A Dmypy.ini72 |tests/http/test_site.py

123