Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for principale (0.24 sec)

  1. docs/fr/docs/advanced/additional-responses.md

                        }
                    }
                }
            }
        }
    }
    ```
    
    ## Types de médias supplémentaires pour la réponse principale
    
    Vous pouvez utiliser ce même paramètre `responses` pour ajouter différents types de médias pour la même réponse principale.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  2. docs/fr/docs/deployment/manually.md

    # Exécuter un serveur manuellement - Uvicorn
    
    La principale chose dont vous avez besoin pour exécuter une application **FastAPI** sur une machine serveur distante est un programme serveur ASGI tel que **Uvicorn**.
    
    Il existe 3 principales alternatives :
    
    * <a href="https://www.uvicorn.org/" class="external-link" target="_blank">Uvicorn</a> : un serveur ASGI haute performance.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 04 12:02:09 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  3. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    ```
    
    ## Réponses supplémentaires
    
    Vous avez probablement vu comment déclarer le `response_model` et le `status_code` pour une *opération de chemin*.
    
    Cela définit les métadonnées sur la réponse principale d'une *opération de chemin*.
    
    Vous pouvez également déclarer des réponses supplémentaires avec leurs modèles, codes de statut, etc.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  4. docs/es/docs/advanced/index.md

    # Guía de Usuario Avanzada
    
    ## Características Adicionales
    
    El [Tutorial - Guía de Usuario](../tutorial/index.md){.internal-link target=_blank} principal debe ser suficiente para darte un paseo por todas las características principales de **FastAPI**
    
    En las secciones siguientes verás otras opciones, configuraciones, y características adicionales.
    
    !!! tip
        Las próximas secciones **no son necesariamente "avanzadas"**.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 822 bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Handshake.kt

        level = DeprecationLevel.ERROR,
      )
      fun peerCertificates(): List<Certificate> = peerCertificates
    
      /** Returns the remote peer's principle, or null if that peer is anonymous. */
      @get:JvmName("peerPrincipal")
      val peerPrincipal: Principal?
        get() = (peerCertificates.firstOrNull() as? X509Certificate)?.subjectX500Principal
    
      @JvmName("-deprecated_peerPrincipal")
      @Deprecated(
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmHttpServletRequest.java

    package jcifs.smb1.http;
    
    import java.security.Principal;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletRequestWrapper;
    
    class NtlmHttpServletRequest extends HttpServletRequestWrapper {
    
        Principal principal;
    
        NtlmHttpServletRequest( HttpServletRequest req, Principal principal ) {
            super( req );
            this.principal = principal;
        }
        public String getRemoteUser() {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpServletRequest.java

    package jcifs.http;
    
    
    import java.security.Principal;
    
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletRequestWrapper;
    
    
    class NtlmHttpServletRequest extends HttpServletRequestWrapper {
    
        Principal principal;
    
    
        NtlmHttpServletRequest ( HttpServletRequest req, Principal principal ) {
            super(req);
            this.principal = principal;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/index.md

    # Guide de l'utilisateur avancé
    
    ## Caractéristiques supplémentaires
    
    Le [Tutoriel - Guide de l'utilisateur](../tutorial/index.md){.internal-link target=_blank} devrait suffire à vous faire découvrir toutes les fonctionnalités principales de **FastAPI**.
    
    Dans les sections suivantes, vous verrez des options, configurations et fonctionnalités supplémentaires.
    
    !!! note "Remarque"
        Les sections de ce chapitre ne sont **pas nécessairement "avancées"**.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt

        return delegate!!.peerCertificateChain
      }
    
      @Throws(SSLPeerUnverifiedException::class)
      override fun getPeerPrincipal(): Principal {
        return delegate!!.peerPrincipal
      }
    
      override fun getLocalPrincipal(): Principal {
        return delegate!!.localPrincipal
      }
    
      override fun getCipherSuite(): String {
        return delegate!!.cipherSuite
      }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt

     * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
     * License for the specific language governing permissions and limitations under
     * the License.
     */
    package okhttp3
    
    import java.security.Principal
    import java.security.cert.Certificate
    import javax.net.ssl.SSLPeerUnverifiedException
    import javax.net.ssl.SSLSession
    import javax.net.ssl.SSLSessionContext
    import javax.security.cert.X509Certificate
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3.3K bytes
    - Viewed (0)
Back to top