Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for ababab (0.29 sec)

  1. docs/pt/docs/help-fastapi.md

    ### Não faça perguntas no chat
    
    Tenha em mente que os chats permitem uma "conversa mais livre", dessa forma é muito fácil fazer perguntas que são muito genéricas e dificeís de responder, assim você pode acabar não sendo respondido.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/extra-models.md

    E, então, adicionando o argumento de palavra-chave extra `hashed_password=hashed_password`, como em:
    
    ```Python
    UserInDB(**user_in.dict(), hashed_password=hashed_password)
    ```
    
    ...acaba sendo como:
    
    ```Python
    UserInDB(
        username = user_dict["username"],
        password = user_dict["password"],
        email = user_dict["email"],
        full_name = user_dict["full_name"],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. docs/es/docs/python-types.md

    Ahora que sabes que tienes que arreglarlo convierte `age` a un string con `str(age)`:
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial004.py!}
    ```
    
    ## Declarando tipos
    
    Acabas de ver el lugar principal para declarar los type hints. Como parámetros de las funciones.
    
    Este es también el lugar principal en que los usarías con  **FastAPI**.
    
    ### Tipos simples
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/aenum.go

    	ANEGQ
    	ANEGW
    	ANOPL
    	ANOPW
    	ANOTB
    	ANOTL
    	ANOTQ
    	ANOTW
    	AORB
    	AORL
    	AORPD
    	AORPS
    	AORQ
    	AORW
    	AOUTB
    	AOUTL
    	AOUTSB
    	AOUTSL
    	AOUTSW
    	AOUTW
    	APABSB
    	APABSD
    	APABSW
    	APACKSSLW
    	APACKSSWB
    	APACKUSDW
    	APACKUSWB
    	APADDB
    	APADDL
    	APADDQ
    	APADDSB
    	APADDSW
    	APADDUSB
    	APADDUSW
    	APADDW
    	APALIGNR
    	APAND
    	APANDN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. src/testing/testing.go

    		// AAA to stdout and BBB to stderr simultaneously produces
    		// AAABBB or BBBAAA on the pipe, not something like AABBBA.
    		// However, the exception to this is when the pipe fills: in that
    		// case, Go's use of non-blocking I/O means that writing AAA
    		// or BBB might be split across multiple system calls, making it
    		// entirely possible to get output like AABBBA. The same problem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. docs/yo/docs/index.md

    Láti ní òye síi nípa rẹ̀, wo abala àwọn <a href="https://fastapi.tiangolo.com/benchmarks/" class="internal-link" target="_blank">Àlá</a>.
    
    ## Àṣàyàn Àwọn Àfikún Ìgbẹ́kẹ̀lé Kóòdù
    
    Èyí tí Pydantic ń lò:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/mop_test.go

    	go func() {
    		*p = 5
    		ch <- true
    	}()
    	y = *p
    	x = y
    	<-ch
    }
    
    func TestRaceStringRW(t *testing.T) {
    	ch := make(chan bool, 1)
    	s := ""
    	go func() {
    		s = "abacaba"
    		ch <- true
    	}()
    	_ = s
    	<-ch
    }
    
    func TestRaceStringPtrRW(t *testing.T) {
    	ch := make(chan bool, 1)
    	var x string
    	p := &x
    	go func() {
    		*p = "a"
    		ch <- true
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  8. docs/pt/docs/deployment/docker.md

    Então, se seu aplicativo consumir muito memória (por exemplo, com modelos de aprendizado de máquina), e seu servidor tiver muitos núcleos de CPU **mas pouca memória**, então seu contêiner pode acabar tentando usar mais memória do que está disponível e degradar o desempenho muito (ou até mesmo travar). 🚨
    
    ### Criando um `Dockerfile`
    
    Aqui está como você criaria um `Dockerfile` baseado nessa imagem:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

       * the end of the string. For example:
       *
       * <pre>{@code
       * CharMatcher.anyOf("ab").trimTrailingFrom("abacatbab")
       * }</pre>
       *
       * ... returns {@code "abacat"}.
       */
      public String trimTrailingFrom(CharSequence sequence) {
        int len = sequence.length();
        for (int last = len - 1; last >= 0; last--) {
          if (!matches(sequence.charAt(last))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/CharMatcher.java

       * the end of the string. For example:
       *
       * <pre>{@code
       * CharMatcher.anyOf("ab").trimTrailingFrom("abacatbab")
       * }</pre>
       *
       * ... returns {@code "abacat"}.
       */
      public String trimTrailingFrom(CharSequence sequence) {
        int len = sequence.length();
        for (int last = len - 1; last >= 0; last--) {
          if (!matches(sequence.charAt(last))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top