Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for valides (0.04 sec)

  1. docs/fr/docs/index.md

        * Swagger UI.
        * ReDoc.
    
    ---
    
    Pour revenir à l'exemple de code précédent, **FastAPI** permet de :
    
    * Valider que `item_id` existe dans le chemin des requêtes `GET` et `PUT`.
    * Valider que `item_id` est de type `int` pour les requêtes `GET` et `PUT`.
        * Si ce n'est pas le cas, le client voit une erreur utile et claire.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 22K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_fr.properties

    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} est un numéro de carte de crédit non valide.
    constraints.EAN.message = {item} est un code-barres {type} non valide.
    constraints.Email.message = {item} n'est pas une adresse e-mail valide.
    constraints.Length.message = La longueur de {item} doit être comprise entre {min} et {max}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_es.properties

    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} no es un número de tarjeta de crédito válido.
    constraints.EAN.message = {item} no es un código de barras {type} válido.
    constraints.Email.message = {item} no es una dirección de correo electrónico válida.
    constraints.Length.message = La longitud de {item} debe estar entre {min} y {max}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. docs/id/docs/tutorial/path-params.md

    /// check | Periksa
    
    Dengan deklarasi tipe data Python, **FastAPI** melakukan validasi data.
    
    Perhatikan kesalahan tersebut juga menjelaskan validasi apa yang tidak sesuai.
    
    Validasi ini sangat membantu ketika mengembangkan dan men-*debug* kode yang berhubungan dengan API anda.
    
    ///
    
    ## Dokumentasi
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/path-params.md

    Al heredar de `str`, la documentación de la API podrá saber que los valores deben ser de tipo `string` y podrá representarlos correctamente.
    
    Luego crea atributos de clase con valores fijos, que serán los valores válidos disponibles:
    
    {* ../../docs_src/path_params/tutorial005.py hl[1,6:9] *}
    
    /// info | Información
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/BufferCacheSecurityTest.java

            // Then - Buffer should be valid
            assertNotNull(buffer2, "Reused buffer should not be null");
            assertEquals(SmbComTransaction.TRANSACTION_BUF_SIZE, buffer2.length, "Reused buffer should have correct size");
    
            // Note: We don't check if content is cleared as that's not a security requirement
            // The important part is that the buffer is valid and has correct size
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java

         * Default constructor.
         */
        public FessApiAdminAction() {
            super();
        }
    
        /**
         * Determines whether the current request is authorized to access admin API endpoints.
         * This method validates the access token and checks if the associated permissions
         * allow admin access according to the Fess configuration.
         *
         * @return true if admin access is allowed, false otherwise
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/PacCredentialType.java

            if (!isCredentialTypeCorrect()) {
                throw new PACDecodingException("Invalid PAC credential type");
            }
        }
    
        /**
         * Validates whether the credential type data is correct.
         * @return true if the credential type is valid, false otherwise
         */
        public boolean isCredentialTypeCorrect() {
            return this.credentialType != null && this.credentialType.length < MINIMAL_BUFFER_SIZE;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/pac/Pac.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.util.Hexdump;
    
    /**
     * Privilege Attribute Certificate (PAC) decoder for Kerberos tickets.
     * Parses and validates PAC data structures containing user authorization information
     * from Active Directory Kerberos tickets.
     */
    public class Pac {
    
        private static final Logger log = LoggerFactory.getLogger(Pac.class);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/AuthenticationProvider.java

        /**
         * Gets the signing key for SMB2/3
         *
         * @return the signing key or null if not available
         */
        byte[] getSigningKey();
    
        /**
         * Validates authentication credentials
         *
         * @return true if credentials are valid
         */
        boolean validateCredentials();
    
        /**
         * Clears sensitive authentication data
         */
        void clearSensitiveData();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top