Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 731 - 740 of 2,731 for doAs (0.07 seconds)

  1. docs/zh/docs/tutorial/cors.md

    * `allow_credentials` - 指示跨域请求支持 cookies。默认是 `False`。
    
        当 `allow_credentials` 设为 `True` 时,`allow_origins`、`allow_methods` 和 `allow_headers` 都不能设为 `['*']`。它们必须[显式指定](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#credentialed_requests_and_wildcards)。
    
    * `expose_headers` - 指示可以被浏览器访问的响应头。默认为 `[]`。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionMethodsSummaryRenderer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs.dsl.docbook;
    
    import gradlebuild.docs.dsl.docbook.model.ClassExtensionDoc;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    
    public class ExtensionMethodsSummaryRenderer {
        private final MethodTableRenderer methodTableRenderer;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/dependencies/dependencies-with-yield.md

    ///
    
    /// note | Détails techniques
    
    Toute fonction valide à utiliser avec :
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) ou
    * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager)
    
    sera valide comme dépendance **FastAPI**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/eventbus/outside/AnnotatedNotAbstractInSuperclassTest.java

        public void differentlyOverriddenNotAnnotatedInSubclass(Object o) {
          // the subclass overrides this and does *not* call super.dONAIS(o)
          differentlyOverriddenNotAnnotatedInSubclassBadEvents.add(o);
        }
    
        @Subscribe
        public void differentlyOverriddenAnnotatedInSubclass(Object o) {
          // the subclass overrides this and does *not* call super.dOAIS(o)
          differentlyOverriddenAnnotatedInSubclassBadEvents.add(o);
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 17:27:14 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  5. docs/en/docs/tutorial/debugging.md

    So, the line:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    will not be executed.
    
    /// info
    
    For more information, check [the official Python docs](https://docs.python.org/3/library/__main__.html).
    
    ///
    
    ## Run your code with your debugger { #run-your-code-with-your-debugger }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  6. docs/pt/docs/how-to/conditional-openapi.md

    Se necessário, você pode usar configurações e variáveis de ambiente para configurar o OpenAPI condicionalmente dependendo do ambiente e até mesmo desativá-lo completamente.
    
    ## Sobre segurança, APIs e documentação { #about-security-apis-and-docs }
    
    Ocultar suas interfaces de usuário de documentação na produção não *deveria* ser a maneira de proteger sua API.
    
    Isso não adiciona nenhuma segurança extra à sua API; as *operações de rota* ainda estarão disponíveis onde estão.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  7. ci/official/upload.sh

    fi
    
    # Note on gsutil commands:
    # "gsutil cp" always "copies into". It cannot act on the contents of a directory
    # and it does not seem possible to e.g. copy "gs://foo/bar" as anything other than
    # "/path/bar". This script uses "gsutil rsync" instead, which acts on directory
    # contents. About arguments to gsutil:
    # "gsutil -m rsync" runs in parallel.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Mar 04 22:39:12 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/metadata.md

    例如,將它設定為提供在 `/api/v1/openapi.json`:
    
    {* ../../docs_src/metadata/tutorial002_py310.py hl[3] *}
    
    如果你想完全停用 OpenAPI 綱要,可以設定 `openapi_url=None`,同時也會停用依賴它的文件使用者介面。
    
    ## 文件 URL { #docs-urls }
    
    你可以設定內建的兩個文件使用者介面:
    
    * Swagger UI:提供於 `/docs`。
        * 可用 `docs_url` 參數設定其 URL。
        * 設定 `docs_url=None` 可停用。
    * ReDoc:提供於 `/redoc`。
        * 可用 `redoc_url` 參數設定其 URL。
        * 設定 `redoc_url=None` 可停用。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  9. docs/fr/docs/advanced/openapi-callbacks.md

    ///
    
    ### Vérifier la documentation { #check-the-docs }
    
    Vous pouvez maintenant démarrer votre application et aller sur [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).
    
    Vous verrez votre documentation incluant une section « Callbacks » pour votre *chemin d'accès* qui montre à quoi l’*API externe* devrait ressembler :
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  10. docs/uk/docs/tutorial/schema-extra-example.md

    {* ../../docs_src/schema_extra_example/tutorial003_an_py310.py hl[22:29] *}
    
    ### Приклад у UI документації { #example-in-the-docs-ui }
    
    За допомогою будь-якого з наведених вище методів це виглядатиме так у `/docs`:
    
    <img src="/img/tutorial/body-fields/image01.png">
    
    ### `Body` з кількома `examples` { #body-with-multiple-examples }
    
    Звичайно, ви також можете передати кілька `examples`:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 13.3K bytes
    - Click Count (0)
Back to Top