Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 351 for Mallocs (0.14 sec)

  1. docs/en/docs/tutorial/query-params-str-validations.md

    1. # Query Parameters and String Validations
    2.  
    3. **FastAPI** allows you to declare additional information and validation for your parameters.
    4.  
    5. Let's take this application as example:
    6.  
    7. //// tab | Python 3.10+
    8.  
    9. ```Python hl_lines="7"
    10. {!> ../../docs_src/query_params_str_validations/tutorial001_py310.py!}
    11. ```
    12.  
    13. ////
    14.  
    15. //// tab | Python 3.8+
    16.  
    17. ```Python hl_lines="9"
    18. {!> ../../docs_src/query_params_str_validations/tutorial001.py!}
    19. ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java

    1. /*
    2. * AbstractCollection fails the retainAll(null) test when the subject
    3. * collection is empty, but we'd still like to test retainAll(null) when we
    4. * can. We split the test into empty and non-empty cases. This allows us to
    5. * suppress only the former.
    6. */
    7.  
    8. @CollectionFeature.Require(SUPPORTS_REMOVE)
    9. @CollectionSize.Require(ZERO)
    10. public void testRetainAll_nullCollectionReferenceEmptySubject() {
    11. try {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. mvnw.cmd

    1. IF "%%A"=="wrapperUrl" SET WRAPPER_URL=%%B
    2. )
    3.  
    4. @REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
    5. @REM This allows using the maven wrapper in projects that prohibit checking in binary data.
    6. if exist %WRAPPER_JAR% (
    7. if "%MVNW_VERBOSE%" == "true" (
    8. echo Found %WRAPPER_JAR%
    9. )
    10. ) else (
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

    1. // empty or missing, this rule matches all ports (traffic not restricted by port).
    2. // If this field is present and contains at least one item, then this rule allows
    3. // traffic only if the traffic matches at least one port in the list.
    4. // +optional
    5. repeated NetworkPolicyPort ports = 1;
    6.  
    7. // List of destinations for outgoing traffic of pods selected for this rule.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

    1. // * While dataSource only allows two specific types of objects, dataSourceRef
    2. // allows any non-core object, as well as PersistentVolumeClaim objects.
    3. // * While dataSource ignores disallowed values (dropping them), dataSourceRef
    4. // preserves all values, and generates an error if a disallowed value is
    5. // specified.
    6. // * While dataSource only allows local objects, dataSourceRef allows objects
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. .github/actions/notify-translations/app/main.py

    1. body: Union[str, None] = None,
    2. ) -> Dict[str, Any]:
    3. headers = {"Authorization": f"token {settings.input_token.get_secret_value()}"}
    4. # some fields are only used by one query, but GraphQL allows unused variables, so
    5. # keep them here for simplicity
    6. variables = {
    7. "after": after,
    8. "category_id": category_id,
    9. "discussion_number": discussion_number,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admission/v1/generated.proto

    1. option go_package = "k8s.io/api/admission/v1";
    2.  
    3. // AdmissionRequest describes the admission.Attributes for the admission request.
    4. message AdmissionRequest {
    5. // UID is an identifier for the individual request/response. It allows us to distinguish instances of requests which are
    6. // otherwise identical (parallel requests, requests when earlier requests did not modify etc)
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admission/v1beta1/generated.proto

    1. option go_package = "k8s.io/api/admission/v1beta1";
    2.  
    3. // AdmissionRequest describes the admission.Attributes for the admission request.
    4. message AdmissionRequest {
    5. // UID is an identifier for the individual request/response. It allows us to distinguish instances of requests which are
    6. // otherwise identical (parallel requests, requests when earlier requests did not modify etc)
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. docs/sts/README.md

    1. - Temporary credentials are short-term, as the name implies. They can be configured to last for anywhere from a few minutes to several hours. After the credentials expire, MinIO no longer recognizes them or allows any kind of access from API requests made with them.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/get-current-user.md

    1. You might remember that request bodies are also declared with Pydantic models.
    2.  
    3. Here **FastAPI** won't get confused because you are using `Depends`.
    4.  
    5. ///
    6.  
    7. /// check
    8.  
    9. The way this dependency system is designed allows us to have different dependencies (different "dependables") that all return a `User` model.
    10.  
    11. We are not restricted to having only one dependency that can return that type of data.
    12.  
    13. ///
    14.  
    15. ## Other models
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top