- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 480 for token2 (0.06 sec)
-
CHANGELOG/CHANGELOG-1.7.md
* `--service-account-lookup` now defaults to true, requiring the Secret API object containing the token to exist in order for a service account token to be valid. This enables service account tokens to be revoked by deleting the Secret object containing the token. ([#44071](https://github.com/kubernetes/kubernetes/pull/44071), [@liggitt](https://github.com/liggitt))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 308.7K bytes - Viewed (1) -
src/main/resources/fess_label_pt_BR.properties
labels.boost_document_rule_boost_expr=Expressão de impulso labels.boost_document_rule_sort_order=Ordem de classificação labels.access_token_configuration=Token de acesso labels.access_token_title_details=Token de acesso labels.access_token_list_name=Nome labels.access_token_name=Nome labels.access_token_token=Token labels.access_token_expires=Expira labels.access_token_parameter_name=Nome do parâmetro labels.access_token_updated_time=Data de criação
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
*/ protected EditBody createEditBody(final KuromojiItem entity, final String dictId) { final EditBody body = new EditBody(); body.id = entity.getId(); body.dictId = dictId; body.token = entity.getToken(); body.reading = entity.getReading(); body.pos = entity.getPos(); body.segmentation = entity.getSegmentation(); return body; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java
return StringUtil.EMPTY; } @Override public String getAppEncryptPropertyPattern() { return ".*password|.*key|.*token|.*secret"; } }; ComponentUtil.setFessConfig(fessConfig); SystemHelper systemHelper = new SystemHelper() { @Override public String getProductVersion() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
*/ int NTLMSSP_REQUEST_INIT_RESPONSE = 0x00100000; /** * ?? According to spec this is NTLMSSP_NEGOTIATE_IDENTIFY * * If set, requests an identify level token */ int NTLMSSP_REQUEST_ACCEPT_RESPONSE = 0x00200000; /** * Requests the usage of the LMOWF */ int NTLMSSP_REQUEST_NON_NT_SESSION_KEY = 0x00400000; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
docs/es/docs/tutorial/security/index.md
* Un parámetro de query. * Un header. * Una cookie. * `http`: sistemas de autenticación HTTP estándar, incluyendo: * `bearer`: un header `Authorization` con un valor de `Bearer ` más un token. Esto se hereda de OAuth2. * Autenticación básica HTTP. * Digest HTTP, etc. * `oauth2`: todas las formas de OAuth2 para manejar la seguridad (llamadas "flujos").
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 4.6K bytes - Viewed (0) -
cmd/api-errors.go
}, ErrInvalidToken: { Code: "InvalidTokenId", Description: "The security token included in the request is invalid", HTTPStatusCode: http.StatusForbidden, }, ErrNoTokenRevokeType: { Code: "InvalidArgument", Description: "No token revoke type specified and one could not be inferred from the request", HTTPStatusCode: http.StatusBadRequest, },
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 93K bytes - Viewed (1) -
docs/es/docs/tutorial/cors.md
Pero eso solo permitirá ciertos tipos de comunicación, excluyendo todo lo que implique credenciales: Cookies, headers de autorización como los utilizados con Bearer Tokens, etc. Así que, para que todo funcione correctamente, es mejor especificar explícitamente los orígenes permitidos. ## Usa `CORSMiddleware` Puedes configurarlo en tu aplicación **FastAPI** usando el `CORSMiddleware`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.roleTypeIds=Rollen-IDs labels.scriptData=Skript labels.scriptResult=Ergebnis labels.scriptType=Ausführungsmethode labels.segmentation=Segmentierung labels.startTime=Startzeit labels.target=Ziel labels.token=Token labels.synonymFile=Synonymdatei labels.stopwordsFile=Stopwörterdatei labels.stemmerOverrideFile=Stemmer-Überschreibungsdatei labels.mappingFile=Zuordnungsdatei labels.protwordsFile=Protwords-Datei
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.5K bytes - Viewed (1) -
docs/ja/docs/tutorial/security/oauth2-jwt.md
# パスワード(およびハッシュ化)によるOAuth2、JWTトークンによるBearer これでセキュリティの流れが全てわかったので、<abbr title="JSON Web Tokens">JWT</abbr>トークンと安全なパスワードのハッシュ化を使用して、実際にアプリケーションを安全にしてみましょう。 このコードは、アプリケーションで実際に使用したり、パスワードハッシュをデータベースに保存するといった用途に利用できます。 本章では、前章の続きから始めて、コードをアップデートしていきます。 ## JWT について JWTとは「JSON Web Tokens」の略称です。 JSONオブジェクトをスペースのない長く密集した文字列で表現したトークンの仕様です。例えば次のようになります: ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14K bytes - Viewed (1)