Home
last modified time | relevance | path

Searched refs:allow_credentials (Results 1 – 25 of 241) sorted by relevance

12345678910

/dports/devel/py-oslo.middleware/oslo.middleware-4.5.0/oslo_middleware/tests/
H A Dtest_cors.py107 allow_credentials)
200 self.assertTrue(cc.allow_credentials)
357 self.assertEqual(gc.allow_credentials, ec.allow_credentials)
366 self.assertEqual(gc.allow_credentials, chc.allow_credentials)
375 self.assertEqual(gc.allow_credentials, goc.allow_credentials)
384 self.assertEqual(gc.allow_credentials, ac.allow_credentials)
396 self.assertEqual(gc.allow_credentials, ac.allow_credentials)
674 self.assertEqual(gc.allow_credentials, ec.allow_credentials)
683 self.assertEqual(gc.allow_credentials, chc.allow_credentials)
692 self.assertEqual(gc.allow_credentials, goc.allow_credentials)
[all …]
/dports/www/py-aiohttp_cors/aiohttp-cors-0.7.0/aiohttp_cors/
H A Dresource_options.py39 def __init__(self, *, allow_credentials=False, expose_headers=(), argument
80 def __new__(cls, *, allow_credentials=False, expose_headers=(), argument
84 if not isinstance(allow_credentials, bool):
87 "got '{!r}'".format(allow_credentials))
88 _allow_credentials = allow_credentials
140 allow_credentials=_allow_credentials,
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/predictors/
H A Dpreconnect_manager.cc46 bool allow_credentials, in PreresolveJob() argument
51 allow_credentials(allow_credentials), in PreresolveJob()
61 allow_credentials(preconnect_request.allow_credentials), in PreresolveJob()
136 bool allow_credentials, in StartPreconnectUrl() argument
142 url.GetOrigin(), 1, allow_credentials, std::move(network_isolation_key), in StartPreconnectUrl()
162 bool allow_credentials, in PreconnectUrl() argument
167 observer_->OnPreconnectUrl(url, num_sockets, allow_credentials); in PreconnectUrl()
173 network_context->PreconnectSockets(num_sockets, url, allow_credentials, in PreconnectUrl()
297 PreconnectUrl(job->url, job->num_sockets, job->allow_credentials, in FinishPreresolveJob()
H A Dpreconnect_manager.h77 bool allow_credentials,
89 bool allow_credentials; member
136 bool allow_credentials) {} in OnPreconnectUrl() argument
169 bool allow_credentials,
194 bool allow_credentials,
H A Dnetwork_hints_handler_impl.cc45 bool allow_credentials) { in Preconnect() argument
63 url, allow_credentials, render_frame_host->GetNetworkIsolationKey()); in Preconnect()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/base/
H A Dmedia_url_params.cc12 bool allow_credentials, in MediaUrlParams() argument
17 allow_credentials(allow_credentials), in MediaUrlParams()
H A Dmedia_url_demuxer_unittest.cc26 bool allow_credentials) { in InitializeTest() argument
29 url::Origin::Create(first_party), allow_credentials, false)); in InitializeTest()
59 EXPECT_EQ(true, params.allow_credentials); in TEST_F()
68 EXPECT_EQ(false, params.allow_credentials); in TEST_F()
H A Dmedia_url_params.h21 bool allow_credentials,
46 bool allow_credentials; member
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/base/
H A Dmedia_url_params.cc12 bool allow_credentials, in MediaUrlParams() argument
17 allow_credentials(allow_credentials), in MediaUrlParams()
H A Dmedia_url_demuxer_unittest.cc26 bool allow_credentials) { in InitializeTest() argument
29 url::Origin::Create(first_party), allow_credentials, false)); in InitializeTest()
59 EXPECT_EQ(true, params.allow_credentials); in TEST_F()
68 EXPECT_EQ(false, params.allow_credentials); in TEST_F()
H A Dmedia_url_params.h21 bool allow_credentials,
46 bool allow_credentials; member
/dports/devel/py-oslo.middleware/oslo.middleware-4.5.0/oslo_middleware/
H A Dcors.py155 allow_credentials = self._conf_get('allow_credentials', 'cors')
167 allow_credentials=allow_credentials,
176 allow_credentials=allow_credentials,
195 def add_origin(self, allowed_origin, allow_credentials=True, argument
226 'allow_credentials': allow_credentials,
/dports/www/py-aiohttp_cors/aiohttp-cors-0.7.0/tests/unit/
H A Dtest_resource_options.py27 assert not opts.allow_credentials
36 assert not (ResourceOptions(allow_credentials=True) == ResourceOptions())
37 assert ResourceOptions(allow_credentials=True) != ResourceOptions()
/dports/www/py-httplib2/httplib2-0.20.2/tests/
H A Dtest_auth.py31 …handler = tests.http_reflect_with_auth(allow_scheme="basic", allow_credentials=(("joe", password),…
44 …handler = tests.http_reflect_with_auth(allow_scheme="basic", allow_credentials=(("joe", password),…
63 handler = tests.http_reflect_with_auth(allow_scheme="basic", allow_credentials=allowed)
80 …handler = tests.http_reflect_with_auth(allow_scheme="digest", allow_credentials=(("joe", password)…
96 allow_scheme="digest", allow_credentials=(("joe", password),), out_renew_nonce=grenew_nonce,
124 allow_credentials=(("joe", password),),
377 allow_credentials=((username, password),),
398 allow_credentials=((username, password),),
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/third_party/httplib2/tests/
H A Dtest_auth.py30 allow_scheme="basic", allow_credentials=(("joe", password),)
45 allow_scheme="basic", allow_credentials=(("joe", password),)
66 allow_scheme="basic", allow_credentials=allowed
85 allow_scheme="digest", allow_credentials=(("joe", password),)
103 allow_credentials=(("joe", password),),
131 allow_credentials=(("joe", password),),
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/gsutil/third_party/httplib2/tests/
H A Dtest_auth.py29 …handler = tests.http_reflect_with_auth(allow_scheme='basic', allow_credentials=(('joe', password),…
42 …handler = tests.http_reflect_with_auth(allow_scheme='basic', allow_credentials=(('joe', password),…
61 handler = tests.http_reflect_with_auth(allow_scheme='basic', allow_credentials=allowed)
78 …handler = tests.http_reflect_with_auth(allow_scheme='digest', allow_credentials=(('joe', password)…
95 allow_credentials=(('joe', password),),
123 allow_credentials=(('joe', password),),
/dports/www/py-starlette/starlette-0.17.1/starlette/middleware/
H A Dcors.py20 allow_credentials: bool = False,
35 preflight_explicit_allow_origin = not allow_all_origins or allow_credentials
40 if allow_credentials:
60 if allow_credentials:
/dports/www/py-aiohttp-middlewares/aiohttp-middlewares-1.2.1/src/aiohttp_middlewares/
H A Dcors.py152 allow_credentials: bool = False,
254 if allow_credentials:
266 if allow_all and not allow_credentials:
/dports/www/py-aiohttp_cors/aiohttp-cors-0.7.0/tests/integration/
H A Dtest_main.py244 {"http://client1.example.org": ResourceOptions(allow_credentials=True)}),
245 ({"http://client1.example.org": ResourceOptions(allow_credentials=True)},
519 allow_credentials=True,
551 allow_credentials=True,
583 allow_credentials=True,
616 allow_credentials=True,
658 allow_credentials=True,
697 allow_credentials=True,
766 allow_credentials=True,
827 allow_credentials=True,
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/network_hints/renderer/
H A Dweb_prescient_networking_impl.cc42 bool allow_credentials) { in Preconnect() argument
47 handler_->Preconnect(url, allow_credentials); in Preconnect()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/network_hints/renderer/
H A Dweb_prescient_networking_impl.cc42 bool allow_credentials) { in Preconnect() argument
47 handler_->Preconnect(url, allow_credentials); in Preconnect()
/dports/www/writefreely/writefreely-0.13.1/vendor/github.com/captncraig/cors/
H A DREADME.md13 allow_credentials [allowCredentials]
25 * **allow_credentials** sets the value of the Access-Control-Allow-Credentials header. Can be tru…
48 allow_credentials false
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/html/parser/
H A Dhtml_resource_preloader_test.cc29 void Preconnect(const WebURL& url, bool allow_credentials) override { in Preconnect() argument
32 allow_credentials_ = allow_credentials; in Preconnect()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/html/parser/
H A Dhtml_resource_preloader_test.cc29 void Preconnect(const WebURL& url, bool allow_credentials) override { in Preconnect() argument
32 allow_credentials_ = allow_credentials; in Preconnect()
/dports/www/chromium-legacy/chromium-88.0.4324.182/device/fido/win/
H A Dfake_webauthn_api.cc115 PCWEBAUTHN_CREDENTIAL_LIST allow_credentials = options->pAllowCredentialList; in AuthenticatorGetAssertion() local
120 if (allow_credentials->cCredentials == 0) { in AuthenticatorGetAssertion()
132 for (size_t i = 0; i < allow_credentials->cCredentials; i++) { in AuthenticatorGetAssertion()
133 PWEBAUTHN_CREDENTIAL_EX credential = allow_credentials->ppCredentials[i]; in AuthenticatorGetAssertion()

12345678910