- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 371 for token5 (0.2 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/de/docs/how-to/conditional-openapi.md
* Speichern Sie niemals Klartext-Passwรถrter, sondern nur Passwort-Hashes. * Implementieren und verwenden Sie gรคngige kryptografische Tools wie pwdlib und JWT-Tokens, usw. * Fรผgen Sie bei Bedarf detailliertere Berechtigungskontrollen mit OAuth2-Scopes hinzu. * ... usw.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 3K bytes - Click Count (0) -
docs/en/docs/project-generation.md
- ๐ฆ Dark mode support. - ๐ [Docker Compose](https://www.docker.com) for development and production. - ๐ Secure password hashing by default. - ๐ JWT (JSON Web Token) authentication. - ๐ซ Email based password recovery. - โ Tests with [Pytest](https://pytest.org). - ๐ [Traefik](https://traefik.io) as a reverse proxy / load balancer.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 1.9K bytes - Click Count (0) -
samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt
cause: Throwable, ): Boolean = when (className) { "okhttp3.recipes.CheckHandshake" -> true // by design "okhttp3.recipes.RequestBodyCompression" -> true // expired token else -> false }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 2.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
* of NTLMv2 authentication. */ int NTLMSSP_NEGOTIATE_NTLM2 = 0x00080000; /** * Requests an initial response token. */ int NTLMSSP_REQUEST_INIT_RESPONSE = 0x00100000; /** * Requests an accept response token. */ int NTLMSSP_REQUEST_ACCEPT_RESPONSE = 0x00200000; /** * Requests the use of a non-NT session key. */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.1K bytes - Click Count (0) -
.github/workflows/label-approved.yml
uv.lock - name: Install GitHub Actions dependencies run: uv sync --locked --no-dev --group github-actions - name: Label Approved run: uv run ./scripts/label_approved.py env: TOKEN: ${{ secrets.GITHUB_TOKEN }} CONFIG: > { "approved-1": { "number": 1, "await_label": "awaiting-review" }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 22:02:57 GMT 2026 - 1.1K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java
* * The simplest way to maintain a rate of QPS is to keep the timestamp of the last granted * request, and ensure that (1/QPS) seconds have elapsed since then. For example, for a rate of * QPS=5 (5 tokens per second), if we ensure that a request isn't granted earlier than 200ms after * the last one, then we achieve the intended rate. If a request comes and the last request was
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 19.3K bytes - Click Count (0) -
fastapi/security/api_key.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 9.6K bytes - Click Count (1) -
guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java
return delegate().floorKey(key); } @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { assertTrue(Thread.holdsLock(mutex)); return delegate().headMap(toKey, inclusive); } @Override public SortedMap<K, V> headMap(K toKey) { return headMap(toKey, false); } @Override public @Nullable Entry<K, V> higherEntry(K key) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 12.8K bytes - Click Count (0) -
docs/ko/docs/tutorial/cors.md
## ์์ผ๋์นด๋ { #wildcards } ๋ํ ๋ชฉ๋ก์ `"*"`("์์ผ๋์นด๋")๋ก ์ ์ธํด ๋ชจ๋ ํ์ฉ๋๋ค๊ณ ๋งํ ์๋ ์์ต๋๋ค. ํ์ง๋ง ๊ทธ๋ฌ๋ฉด ์๊ฒฉ ์ฆ๋ช (credentials)์ด ํฌํจ๋ ๋ชจ๋ ๊ฒ์ ์ ์ธํ๊ณ ํน์ ์ ํ์ ํต์ ๋ง ํ์ฉํ๊ฒ ๋ฉ๋๋ค. ์: ์ฟ ํค, Bearer Token์ ์ฌ์ฉ๋๋ ๊ฒ๊ณผ ๊ฐ์ Authorization ํค๋ ๋ฑ. ๋ฐ๋ผ์ ๋ชจ๋ ๊ฒ์ด ์ฌ๋ฐ๋ฅด๊ฒ ๋์ํ๊ฒ ํ๋ ค๋ฉด, ํ์ฉ๋ ์ถ์ฒ๋ฅผ ๋ช ์์ ์ผ๋ก ์ง์ ํ๋ ๊ฒ์ด ๋ ์ข์ต๋๋ค. ## `CORSMiddleware` ์ฌ์ฉ { #use-corsmiddleware } `CORSMiddleware`๋ฅผ ์ฌ์ฉํ์ฌ **FastAPI** ์ ํ๋ฆฌ์ผ์ด์ ์์ ์ด๋ฅผ ์ค์ ํ ์ ์์ต๋๋ค.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.1K bytes - Click Count (0) -
tests/test_security_oauth2.py
from fastapi.testclient import TestClient from inline_snapshot import snapshot from pydantic import BaseModel app = FastAPI() reusable_oauth2 = OAuth2( flows={ "password": { "tokenUrl": "token", "scopes": {"read:users": "Read the users", "write:users": "Create users"}, } } ) class User(BaseModel): username: str # Here we use string annotations to test them
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 9.8K bytes - Click Count (0)