Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for principe (0.2 sec)

  1. docs/es/docs/tutorial/debugging.md

    ## Llama a `uvicorn`
    
    En tu aplicación de FastAPI, importa y ejecuta `uvicorn` directamente:
    
    {* ../../docs_src/debugging/tutorial001.py hl[1,15] *}
    
    ### Acerca de `__name__ == "__main__"`
    
    El objetivo principal de `__name__ == "__main__"` es tener algo de código que se ejecute cuando tu archivo es llamado con:
    
    <div class="termy">
    
    ```console
    $ python myapp.py
    ```
    
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

     */
    package org.codelibs.fess.api;
    
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    import java.security.Principal;
    import java.util.Collection;
    import java.util.Enumeration;
    import java.util.Locale;
    import java.util.Map;
    
    import jakarta.servlet.AsyncContext;
    import jakarta.servlet.DispatcherType;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. docs/fr/docs/project-generation.md

    * Frontend **Vue** :
        * Généré avec Vue CLI.
        * Gestion de l'**Authentification JWT**.
        * Page de connexion.
        * Après la connexion, page de tableau de bord principal.
        * Tableau de bord principal avec création et modification d'utilisateurs.
        * Modification de ses propres caractéristiques utilisateur.
        * **Vuex**.
        * **Vue-router**.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/static-files.md

    Esto es diferente a usar un `APIRouter`, ya que una aplicación montada es completamente independiente. El OpenAPI y la documentación de tu aplicación principal no incluirán nada de la aplicación montada, etc.
    
    Puedes leer más sobre esto en la [Guía de Usuario Avanzada](../advanced/index.md){.internal-link target=_blank}.
    
    ## Detalles
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String LDAP_BASE_DN = "ldap.base.dn";
    
        /** LDAP security principal configuration key. */
        public static final String LDAP_SECURITY_PRINCIPAL = "ldap.security.principal";
    
        /** LDAP admin security principal configuration key. */
        public static final String LDAP_ADMIN_SECURITY_PRINCIPAL = "ldap.admin.security.principal";
    
        /** LDAP admin security credentials configuration key. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/StaticJAASConfigurationTest.java

        void customOptions_arePropagated() {
            // Arrange
            Map<String, Object> opts = new HashMap<>();
            opts.put("useKeyTab", "true");
            opts.put("storeKey", "true");
            opts.put("principal", "******@****.***");
            StaticJAASConfiguration cfg = new StaticJAASConfiguration(opts);
    
            // Act
            AppConfigurationEntry[] entries = cfg.getAppConfigurationEntry("any");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/PacConstants.java

         */
        int CLIENT_NAME_TYPE = 0xA;
        /**
         * Buffer type for constrained delegation information.
         */
        int CONSTRAINT_DELEGATIION_TYPE = 0xB;
        /**
         * Buffer type for client user principal name.
         */
        int CLIENT_UPN_TYPE = 0xC;
        /**
         * Buffer type for client claims information.
         */
        int CLIENT_CLAIMS_TYPE = 0xD;
        /**
         * Buffer type for device information.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     * https://github.com/google/guava/releases/tag/v27.0) This means that the copy of ListenableFuture
     * in com.google.guava:guava differs from the "frozen" copy in the listenablefuture artifact. This
     * could in principle cause problems for some users. Still, we expect that the benefits of the
     * nullness annotations in particular will outweigh the costs. (And it's worth noting that we have
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. docs/es/docs/advanced/middleware.md

    # Middleware Avanzado
    
    En el tutorial principal leíste cómo agregar [Middleware Personalizado](../tutorial/middleware.md){.internal-link target=_blank} a tu aplicación.
    
    Y luego también leíste cómo manejar [CORS con el `CORSMiddleware`](../tutorial/cors.md){.internal-link target=_blank}.
    
    En esta sección veremos cómo usar otros middlewares.
    
    ## Agregando middlewares ASGI
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java

        }
    
        /**
         * Creates a byte array representing a Kerberos ticket for testing purposes.
         * @param version Kerberos version
         * @param realm Server realm
         * @param principalName Server principal name
         * @param encType Encryption type
         * @param encryptedData Encrypted data
         * @param unknownTag Optional unknown tag number to test error handling
         * @return A byte array representing the ticket
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top