- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 268 for Cookies (0.12 sec)
-
okhttp/api/okhttp.api
} public final class okhttp3/Cookie$Builder { public fun <init> ()V public final fun build ()Lokhttp3/Cookie; public final fun domain (Ljava/lang/String;)Lokhttp3/Cookie$Builder; public final fun expiresAt (J)Lokhttp3/Cookie$Builder; public final fun hostOnlyDomain (Ljava/lang/String;)Lokhttp3/Cookie$Builder; public final fun httpOnly ()Lokhttp3/Cookie$Builder;
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 13:41:01 UTC 2024 - 70.2K bytes - Viewed (0) -
fastapi/openapi/models.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 22:49:33 UTC 2024 - 15K bytes - Viewed (0) -
docs/ja/docs/tutorial/cors.md
これを実現するには、バックエンドに「許可されたオリジン」のリストがなければなりません。 この場合、フロントエンドを正しく機能させるには、そのリストに `http://localhost:8080` を含める必要があります。 ## ワイルドカード リストを `"*"` (ワイルドカード) と宣言して、すべてを許可することもできます。 ただし、Bearer Tokenで使用されるような認証ヘッダーやCookieなどのクレデンシャル情報に関するものを除いて、特定の種類の通信のみが許可されます。 したがって、すべてを正しく機能させるために、許可されたオリジンの明示的な指定をお勧めします。 ## `CORSMiddleware` の使用 **FastAPI** アプリケーションでは `CORSMiddleware` を使用して、CORSに関する設定ができます。 * `CORSMiddleware`をインポートします。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.3K bytes - Viewed (0) -
docs/pt/docs/tutorial/dependencies/sub-dependencies.md
* Ela depende do `query_extractor`, e atribui o valor retornado pela função ao parâmetro `q`. * Ela também declara um cookie opcional `last_query`, do tipo `str`. * Se o usuário não passou nenhuma consulta `q`, a última consulta é utilizada, que foi salva em um cookie anteriormente. ## Utilizando a dependência Então podemos utilizar a dependência com: //// tab | Python 3.10+
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.9K bytes - Viewed (0) -
okhttp-urlconnection/src/main/kotlin/okhttp3/JavaNetCookieJar.kt
* limitations under the License. */ @file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE") package okhttp3 import java.net.CookieHandler /** * A cookie jar that delegates to a [java.net.CookieHandler]. * * This implementation delegates everything to [okhttp3.java.net.cookiejar.JavaNetCookieJar], which * conforms to the package-naming limitations of JPMS. *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProvider.java
*/ package org.codelibs.fess.mylasta.direction.sponsor; import org.codelibs.fess.mylasta.direction.FessConfig; import org.lastaflute.core.security.InvertibleCryptographer; import org.lastaflute.web.servlet.cookie.CookieResourceProvider; /** * @author jflute */ public class FessCookieResourceProvider implements CookieResourceProvider { protected final FessConfig harborConfig;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.6K bytes - Viewed (0) -
fastapi/security/open_id_connect_url.py
It is also useful when you want to have authentication that can be provided in one of multiple optional ways (for example, with OpenID Connect or in a cookie). """ ), ] = True, ): self.model = OpenIdConnectModel( openIdConnectUrl=openIdConnectUrl, description=description )
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Apr 02 02:48:51 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/en/docs/tutorial/schema-extra-example.md
```Python hl_lines="4 10-13" {!> ../../docs_src/schema_extra_example/tutorial002.py!} ``` //// ## `examples` in JSON Schema - OpenAPI When using any of: * `Path()` * `Query()` * `Header()` * `Cookie()` * `Body()` * `Form()` * `File()` you can also declare a group of `examples` with additional information that will be added to their **JSON Schemas** inside of **OpenAPI**. ### `Body` with `examples`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.6K bytes - Viewed (0) -
docs/de/docs/tutorial/schema-extra-example.md
{!> ../../docs_src/schema_extra_example/tutorial002.py!} ``` //// ## `examples` im JSON-Schema – OpenAPI Bei Verwendung von: * `Path()` * `Query()` * `Header()` * `Cookie()` * `Body()` * `Form()` * `File()` können Sie auch eine Gruppe von `examples` mit zusätzlichen Informationen deklarieren, die zu ihren **JSON-Schemas** innerhalb von **OpenAPI** hinzugefügt werden.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.2K bytes - Viewed (0) -
fastapi/security/oauth2.py
It is also useful when you want to have authentication that can be provided in one of multiple optional ways (for example, with OAuth2 or in a cookie). """ ), ] = True, ): self.model = OAuth2Model( flows=cast(OAuthFlowsModel, flows), description=description )
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 23 18:30:18 UTC 2024 - 21.1K bytes - Viewed (0)