- Sort Score
- Num 10 results
- Language All
Results 531 - 540 of 665 for tokens (0.21 seconds)
-
src/main/resources/fess_message_pt_BR.properties
errors.failed_to_download_mapping_file = Não foi possível baixar o arquivo de mapeamento. errors.failed_to_upload_mapping_file = Não foi possível carregar o arquivo de mapeamento. errors.invalid_kuromoji_token={0} não é um token válido. errors.invalid_kuromoji_segmentation=O número de divisões de {0} não corresponde ao número de divisões de {1}. errors.invalid_str_is_included = {1} é inválido em {0}. errors.blank_password = A senha é obrigatória.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/cors.md
在此情況下,該清單必須包含 `http://localhost:8080`,` :8080` 的前端才能正確運作。 ## 萬用字元 { #wildcards } 也可以將清單宣告為 `"*"`(「wildcard」萬用字元),表示全部都允許。 但那只會允許某些類型的通訊,凡是涉及憑證(credentials)的都會被排除:例如 Cookie、Authorization 標頭(像 Bearer Token 會用到的)等。 因此,為了讓一切正常運作,最好明確指定被允許的來源。 ## 使用 `CORSMiddleware` { #use-corsmiddleware } 你可以在 **FastAPI** 應用程式中使用 `CORSMiddleware` 來設定: * 匯入 `CORSMiddleware`。 * 建立允許的來源清單(字串)。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 5K bytes - Click Count (0) -
docs/ko/docs/tutorial/testing.md
│ ├── main.py │ └── test_main.py ``` 이제 **FastAPI** 앱이 있는 `main.py` 파일에 몇 가지 다른 **경로 처리**가 추가된 경우를 생각해봅시다. 오류를 반환할 수 있는 `GET` 작업이 있습니다. 여러 다른 오류를 반환할 수 있는 `POST` 작업이 있습니다. 두 *경로 처리* 모두 `X-Token` 헤더를 요구합니다. {* ../../docs_src/app_testing/app_b_an_py310/main.py *} ### 확장된 테스트 파일 { #extended-testing-file } 이제는 `test_main.py`를 확장된 테스트들로 수정할 수 있습니다:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.8K bytes - Click Count (0) -
android/guava/src/com/google/common/io/CharSource.java
* the same way. * * @since 20.0 */ public ByteSource asByteSource(Charset charset) { return new AsByteSource(charset); } /** * Opens a new {@link Reader} for reading from this source. This method returns a new, independent * reader each time it is called. * * <p>The caller is responsible for ensuring that the returned reader is closed. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 25.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
@Size(max = 1000) public String oicClientSecret; /** OpenID Connect authorization server URL. */ @Size(max = 1000) public String oicAuthServerUrl; /** OpenID Connect token server URL. */ @Size(max = 1000) public String oicTokenServerUrl; /** OpenID Connect redirect URL. */ @Size(max = 1000) public String oicRedirectUrl; /** OpenID Connect scope. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 15.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
} @Test public void test_getOicTokenServerUrl_default() { final String url = authenticator.getOicTokenServerUrl(); assertEquals("https://accounts.google.com/o/oauth2/token", url); } @Test public void test_getOicClientId_default() { final String clientId = authenticator.getOicClientId(); assertEquals("", clientId); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 11K bytes - Click Count (0) -
docs/uk/docs/tutorial/bigger-applications.md
Тож помістимо їх у власний модуль `dependencies` (`app/dependencies.py`). Тепер використаємо просту залежність для читання користувацького заголовка `X-Token`: {* ../../docs_src/bigger_applications/app_an_py310/dependencies.py hl[3,6:8] title["app/dependencies.py"] *} /// tip | Порада Ми використовуємо вигаданий заголовок, щоб спростити приклад.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 27.4K bytes - Click Count (0) -
docs/sts/ldap.md
- On finding at least one associated policy, MinIO generates temporary credentials for the user storing the list of groups in a cryptographically secure session token. The temporary access key, secret key and session token are returned to the user. - The user can now use these credentials to make requests to the MinIO server.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 18.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ public static VirtualHostHelper getVirtualHostHelper() { return getComponent(VIRTUAL_HOST_HELPER); } /** * Gets the access token helper component. * @return The access token helper. */ public static AccessTokenHelper getAccessTokenHelper() { return getComponent(ACCESS_TOKEN_HELPER); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java
/** * Share flag indicating the share is a DFS root. */ public static final int SMB2_SHAREFLAG_DFS_ROOT = 0x2; /** * Share flag indicating that exclusive opens are restricted on this share. */ public static final int SMB2_SHAREFLAG_RESTRICT_EXCLUSIVE_OPENS = 0x100; /** * Share flag indicating that shared delete is forced for this share. */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.8K bytes - Click Count (0)