Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for interactive (0.2 sec)

  1. fastapi/openapi/docs.py

                """
            ),
        ] = None,
    ) -> HTMLResponse:
        """
        Generate and return the HTML  that loads Swagger UI for the interactive
        API docs (normally served at `/docs`).
    
        You would only call this function yourself if you needed to override some parts,
        for example the URLs to use to load Swagger UI's JavaScript and CSS.
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  2. docs/fr/docs/python-types.md

        * Générant automatiquement des **erreurs** renvoyées au client quand la donnée est invalide.
    * **Documenter** l'API avec OpenAPI :
        * ce qui ensuite utilisé par les interfaces utilisateur automatiques de documentation interactive.
    
    Tout cela peut paraître bien abstrait, mais ne vous inquiétez pas, vous verrez tout ça en pratique dans [Tutoriel - Guide utilisateur](tutorial/index.md){.internal-link target=_blank}.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  3. docs/debugging/README.md

    ```
    $ inspect -key=ad2b43d847fdb14e54c5836200177f7158b3f745433525f5d23c0e0208e50c9948540b54 inspect.ad2b43d8.enc
    Output decrypted to inspect.ad2b43d8.zip
    ```
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Feb 25 01:17:53 GMT 2022
    - 8.7K bytes
    - Viewed (0)
  4. docs/fa/docs/features.md

    * <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank"><strong>Swagger UI</strong></a>، با <abbr title="interactive exploration">کاوش تعاملی</abbr>، API خود را مستقیما از طریق مرورگر صدازده و تست کنید.
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 15K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/query-params-str-validations.md

    ## Déclarer des métadonnées supplémentaires
    
    On peut aussi ajouter plus d'informations sur le paramètre.
    
    Ces informations seront incluses dans le schéma `OpenAPI` généré et utilisées par la documentation interactive ou les outils externes utilisés.
    
    !!! note
        Gardez en tête que les outils externes utilisés ne supportent pas forcément tous parfaitement OpenAPI.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jul 27 18:53:21 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                            user = auth.getUserName();
                            password = new String(auth.getPassword());
                        }
                        catch ( Exception ex ) {
                            log.debug("Interactive authentication failed", ex);
                        }
                    }
                    Type2Message type2 = (Type2Message) message;
                    message = new Type3Message(
                        this.transportContext,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/simple-oauth2.md

        That's the benefit of standards...
    
    ## See it in action
    
    Open the interactive docs: <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    ### Authenticate
    
    Click the "Authorize" button.
    
    Use the credentials:
    
    User: `johndoe`
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    repository; protected events.SessionEventSupport sessionEventSupport; protected events.TransferEventSupport transferEventSupport; protected proxy.ProxyInfo proxyInfo; protected authentication.AuthenticationInfo authenticationInfo; protected boolean interactive; public void AbstractWagon(); public repository.Repository getRepository(); public proxy.ProxyInfo getProxyInfo(); public authentication.AuthenticationInfo getAuthenticationInf(); public void connect(repository.Repository) throws ConnectionException,...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 45.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

            Map<String, Object> configProps = new LinkedHashMap<>();
            configProps.put(ConfigurationProperties.USER_AGENT, getUserAgent());
            configProps.put(ConfigurationProperties.INTERACTIVE, request.isInteractiveMode());
            configProps.put("maven.startTime", request.getStartTime());
    
            sessionBuilder.setOffline(request.isOffline());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/bigger-applications.md

    * `/items/`
    * `/items/{item_id}`
    
    ...as we intended.
    
    * They will be marked with a list of tags that contain a single string `"items"`.
        * These "tags" are especially useful for the automatic interactive documentation systems (using OpenAPI).
    * All of them will include the predefined `responses`.
    * All these *path operations* will have the list of `dependencies` evaluated/executed before them.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top