Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 139 for Potter (0.23 sec)

  1. CHANGELOG/CHANGELOG-1.15.md

      - [Changelog since v1.15.7](#changelog-since-v1157)
        - [Other notable changes](#other-notable-changes)
    - [v1.15.7](#v1157)
      - [Downloads for v1.15.7](#downloads-for-v1157)
        - [Client Binaries](#client-binaries-5)
        - [Server Binaries](#server-binaries-5)
        - [Node Binaries](#node-binaries-5)
      - [Changelog since v1.15.6](#changelog-since-v1156)
        - [Other notable changes](#other-notable-changes-1)
    - [v1.15.6](#v1156)
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 278.9K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/tflite-other.md

    name: TensorFlow Lite Other Issue description: Use this template to report any
    issue in TensorFlow Lite that is not about Converters, Play Services or Ops
    body: - type: dropdown id: issue-type attributes: label: Issue Type description:
    What type of issue would you like to report? multiple: false options: - Bug -
    Build/Install - Performance - Support - Feature Request - Documentation Feature
    Request - Documentation Bug - Others validations: required: true - type:
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Dec 29 22:28:29 GMT 2022
    - 3.4K bytes
    - Viewed (1)
  3. src/main/webapp/js/admin/adminlte.min.js.map

    NAVBAR_MD_FIXED: 'layout-md-navbar-fixed',\n    NAVBAR_LG_FIXED: 'layout-lg-navbar-fixed',\n    NAVBAR_XL_FIXED: 'layout-xl-navbar-fixed',\n    FOOTER_FIXED: 'layout-footer-fixed',\n    FOOTER_SM_FIXED: 'layout-sm-footer-fixed',\n    FOOTER_MD_FIXED: 'layout-md-footer-fixed',\n    FOOTER_LG_FIXED: 'layout-lg-footer-fixed',\n    FOOTER_XL_FIXED: 'layout-xl-footer-fixed',\n  }\n\n  const Default = {\n    controlsidebarSlide: true,\n    scrollbarTheme : 'os-theme-light',\n    scrollbarAutoHide: 'l',\n ...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 77K bytes
    - Viewed (1)
  4. docs/metrics/prometheus/grafana/README.md

    [Grafana](https://grafana.com/) allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and share dashboards with your team and foster a data driven culture.
    
    ## Prerequisites
    
    - Prometheus and MinIO configured as explained in [document here](https://github.com/minio/minio/blob/master/docs/metrics/prometheus/README.md).
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 17:15:39 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10PsiTypeProvider.kt

                    typeMapper.typeContext.getOptimalModeForValueParameter(type.fe10Type)
            }.let { typeMappingMode ->
                // Otherwise, i.e., if we won't skip type with no type arguments, flag overriding might bother a case like:
                // @JvmSuppressWildcards(false) Long -> java.lang.Long, not long, even though it should be no-op!
                if (type.fe10Type.arguments.isEmpty())
                    typeMappingMode
                else
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Mar 28 16:10:07 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  6. docs/sts/tls.md

    A major advantage of certificate-based authentication compared to other STS authentication methods, like OpenID Connect or LDAP/AD, is that client authentication works without any additional/external component that must be constantly available. Therefore, certificate-based authentication may provide better availability / lower operational complexity.
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 6K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/sql-databases.md

    ...and adapt it with your database data and credentials (equivalently for MySQL, MariaDB or any other).
    
    !!! tip
    
        This is the main line that you would have to modify if you wanted to use a different database.
    
    ### Create the SQLAlchemy `engine`
    
    The first step is to create a SQLAlchemy "engine".
    
    We will later use this `engine` in other places.
    
    ```Python hl_lines="8-10"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 29.6K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/additional-responses.md

                    * **FastAPI** adds a reference here to the global JSON Schemas in another place in your OpenAPI instead of including it directly. This way, other applications and clients can use those JSON Schemas directly, provide better code generation tools, etc.
    
    The generated responses in the OpenAPI for this *path operation* will be:
    
    ```JSON hl_lines="3-12"
    {
        "responses": {
            "404": {
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/separate-openapi-schemas.md

    </div>
    
    With this feature from **Pydantic v2**, your API documentation is more **precise**, and if you have autogenerated clients and SDKs, they will be more precise too, with a better **developer experience** and consistency. 🎉
    
    ## Do not Separate Schemas
    
    Now, there are some cases where you might want to have the **same schema for input and output**.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

                }
            }.let { typeMappingMode ->
                // Otherwise, i.e., if we won't skip type with no type arguments, flag overriding might bother a case like:
                // @JvmSuppressWildcards(false) Long -> java.lang.Long, not long, even though it should be no-op!
                if (expandedType.typeArguments.isEmpty())
                    typeMappingMode
                else
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 12 13:29:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top