- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 1,415 for exemple (0.03 sec)
-
docs/en/docs/advanced/path-operation-advanced-configuration.md
For example, you could decide to read and validate the request with your own code, without using the automatic features of FastAPI with Pydantic, but you could still want to define the request in the OpenAPI schema. You could do that with `openapi_extra`: {* ../../docs_src/path_operation_advanced_configuration/tutorial006_py39.py hl[19:36, 39:40] *}Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 7.2K bytes - Viewed (0) -
docs/en/docs/tutorial/request-form-models.md
Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example: ```console $ pip install python-multipart ``` /// /// note This is supported since FastAPI version `0.113.0`. 🤓 /// ## Pydantic Models for Forms { #pydantic-models-for-forms }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/test/projects/project-builder/MNG-6983/pom.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>org.example</groupId> <artifactId>parent</artifactId> <version>0.0.1-SNAPSHOT</version> <relativePath>./parent-pom.xml</relativePath> </parent> <artifactId>child</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 753 bytes - Viewed (0) -
src/main/resources/fess_indices/fess/gl/protwords.txt
exemplo...
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Jun 06 14:42:24 UTC 2017 - 8 bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug_report.yaml
description: Please describe the issue you encountered. validations: required: true - type: textarea attributes: label: Example description: > Please provide a [Short, Self Contained, Correct (Compilable), Example](http://sscce.org/) demonstrating the bug. render: java validations: required: true - type: textarea attributes:Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 16 20:08:25 UTC 2024 - 2.9K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Typed.java
* <p> * This annotation allows you to limit which types of a bean should be available * for injection. It can be used to prevent unintended automatic binding of implemented * interfaces or extended classes. * <p> * Example usage: * <pre> * {@literal @}Typed(ServiceImpl.class) * public class ServiceImpl implements Service { * // Implementation * } * </pre> * * @since 4.0.0 */ @Target({FIELD, METHOD, TYPE})
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 2.5K bytes - Viewed (0) -
docs/en/docs/advanced/additional-status-codes.md
If you want to return additional status codes apart from the main one, you can do that by returning a `Response` directly, like a `JSONResponse`, and set the additional status code directly. For example, let's say that you want to have a *path operation* that allows to update items, and returns HTTP status codes of 200 "OK" when successful.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2K bytes - Viewed (0) -
tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py
mod = importlib.import_module( f"docs_src.query_params_str_validations.{request.param}" ) client = TestClient(mod.app) return client @pytest.mark.xfail( reason="Code example is not valid. See https://github.com/fastapi/fastapi/issues/12419" ) def test_query_params_str_validations_no_query(client: TestClient): response = client.get("/items/") assert response.status_code == 200
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 10:43:02 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* saml.sp.base.url=https://your-fess-server.example.com * </pre> * * <h3>Option 2: Set individual SP URLs</h3> * <pre> * # SP Entity ID (Audience URI in IdP) * saml.sp.entityid=https://your-fess-server.example.com/sso/metadata * * # Assertion Consumer Service URL * saml.sp.assertion_consumer_service.url=https://your-fess-server.example.com/sso/ * * # Single Logout Service URL
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 20.2K bytes - Viewed (3) -
src/test/java/jcifs/smb1/UniAddressTest.java
@Test void getHostNameDelegatesToWrappedInetAddress() { InetAddress dummy = mock(InetAddress.class); when(dummy.getHostName()).thenReturn("host.example.com"); UniAddress ua = new UniAddress(dummy); assertEquals("host.example.com", ua.getHostName(), "should forward hostName to underlying InetAddress"); } @Test void getHostAddressDelegatesToWrappedInetAddress() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0)