Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 930 for xdefine (0.05 sec)

  1. docs/en/docs/tutorial/cookie-params.md

    1. # Cookie Parameters
    2.  
    3. You can define Cookie parameters the same way you define `Query` and `Path` parameters.
    4.  
    5. ## Import `Cookie`
    6.  
    7. First import `Cookie`:
    8.  
    9. //// tab | Python 3.10+
    10.  
    11. ```Python hl_lines="3"
    12. {!> ../../docs_src/cookie_params/tutorial001_an_py310.py!}
    13. ```
    14.  
    15. ////
    16.  
    17. //// tab | Python 3.9+
    18.  
    19. ```Python hl_lines="3"
    20. {!> ../../docs_src/cookie_params/tutorial001_an_py39.py!}
    21. ```
    22.  
    23. ////
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/toggleDisabled.js

    1. * JQUERY-FORM-VALIDATOR
    2. *
    3. * @version 2.3.77
    4. * @website http://formvalidator.net/
    5. * @author Victor Jonsson, http://victorjonsson.se
    6. * @license MIT
    7. */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/lang/da.js

    1. * JQUERY-FORM-VALIDATOR
    2. *
    3. * @version 2.3.77
    4. * @website http://formvalidator.net/
    5. * @author Victor Jonsson, http://victorjonsson.se
    6. * @license MIT
    7. */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/lang/ar.js

    1. * JQUERY-FORM-VALIDATOR
    2. *
    3. * @version 2.3.77
    4. * @website http://formvalidator.net/
    5. * @author Victor Jonsson, http://victorjonsson.se
    6. * @license MIT
    7. */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/path-params-numeric-validations.md

    1. ////
    2.  
    3. /// note | "Nota"
    4.  
    5. Um parâmetro de rota é sempre obrigatório, como se fizesse parte da rota.
    6.  
    7. Então, você deve declará-lo com `...` para marcá-lo como obrigatório.
    8.  
    9. Mesmo que você declare-o como `None` ou defina um valor padrão, isso não teria efeito algum, o parâmetro ainda seria obrigatório.
    10.  
    11. ///
    12.  
    13. ## Ordene os parâmetros de acordo com sua necessidade
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CookieTest.kt

    1. .isEqualTo(2000L)
    2. }
    3.  
    4. /** If a cookie incorrectly defines multiple 'Max-Age' attributes, the last one defined wins. */
    5. @Test fun lastMaxAgeWins() {
    6. assertThat(parseCookie(0L, url, "a=b; Max-Age=2; Max-Age=4; Max-Age=1; Max-Age=3")!!.expiresAt)
    7. .isEqualTo(3000L)
    8. }
    9.  
    10. /** If a cookie incorrectly defines multiple 'Expires' attributes, the last one defined wins. */
    11. @Test fun lastExpiresAtWins() {
    12. assertThat(
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/lang/ka.js

    1. * JQUERY-FORM-VALIDATOR
    2. *
    3. * @version 2.3.77
    4. * @website http://formvalidator.net/
    5. * @author Victor Jonsson, http://victorjonsson.se
    6. * @license MIT
    7. */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/query-params.md

    1. Caso você não queira adicionar um valor específico mas queira apenas torná-lo opcional, defina o valor padrão como `None`.
    2.  
    3. Porém, quando você quiser fazer com que o parâmetro de consulta seja obrigatório, você pode simplesmente não declarar nenhum valor como padrão.
    4.  
    5. ```Python hl_lines="6-7"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. docs/en/docs/reference/uploadfile.md

    1. # `UploadFile` class
    2.  
    3. You can define *path operation function* parameters to be of the type `UploadFile` to receive files from the request.
    4.  
    5. You can import it directly from `fastapi`:
    6.  
    7. ```python
    8. from fastapi import UploadFile
    9. ```
    10.  
    11. ::: fastapi.UploadFile
    12. options:
    13. members:
    14. - file
    15. - filename
    16. - size
    17. - headers
    18. - content_type
    19. - read
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 472 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Range.java

    1. import java.util.Comparator;
    2. import java.util.Iterator;
    3. import java.util.NoSuchElementException;
    4. import java.util.SortedSet;
    5. import javax.annotation.CheckForNull;
    6.  
    7. /**
    8. * A range (or "interval") defines the <i>boundaries</i> around a contiguous span of values of some
    9. * {@code Comparable} type; for example, "integers from 1 to 100 inclusive." Note that it is not
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top