Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for consulted (0.15 sec)

  1. docs/fr/docs/advanced/index.md

    ## Cours TestDriven.io
    
    Si vous souhaitez suivre un cours pour débutants avancés pour compléter cette section de la documentation, vous pouvez consulter : <a href="https://testdrive.io/courses/tdd-fastapi/" class="external- link" target="_blank">Développement piloté par les tests avec FastAPI et Docker</a> par **TestDriven.io**.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

          idx += doParseTrieToBuilder(newArrayDeque(), encoded, idx, builder);
        }
    
        return builder.buildOrThrow();
      }
    
      /**
       * Parses a trie node and returns the number of characters consumed.
       *
       * @param stack The prefixes that precede the characters represented by this node. Each entry of
       *     the stack is in reverse order.
       * @param encoded The serialized trie.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Dynamic...
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:34:59 UTC 2024
    - 456.9K bytes
    - Viewed (0)
  4. docs/pt/docs/advanced/websockets.md

    Lá você pode definir:
    
    * O "Item ID", usado na rota.
    * O "Token" usado como um parâmetro de consulta.
    
    /// tip | Dica
    
    Perceba que a consulta `token` será manipulada por uma dependência.
    
    ///
    
    Com isso você pode conectar o WebSocket e então enviar e receber mensagens:
    
    <img src="/img/tutorial/websockets/image05.png">
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 12:20:59 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/dependencies/sub-dependencies.md

        * Ela depende do `query_extractor`, e atribui o valor retornado pela função ao parâmetro `q`.
    * Ela também declara um cookie opcional `last_query`, do tipo `str`.
        * Se o usuário não passou nenhuma consulta `q`, a última consulta é utilizada, que foi salva em um cookie anteriormente.
    
    ## Utilizando a dependência
    
    Então podemos utilizar a dependência com:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="23"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/dependencies/classes-as-dependencies.md

    ```
    
    ////
    
    Esses parâmetros são utilizados pelo **FastAPI** para "definir" a dependência.
    
    Em ambos os casos teremos:
    
    * Um parâmetro de consulta `q` opcional do tipo `str`.
    * Um parâmetro de consulta `skip` do tipo `int`, com valor padrão `0`.
    * Um parâmetro de consulta `limit` do tipo `int`, com valor padrão `100`.
    
    Os dados serão convertidos, validados, documentados no esquema da OpenAPI e etc nos dois casos.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/DfsReferralData.java

         */
        String getDomain ();
    
    
        /**
         * @return the share this referral points to
         */
        String getShare ();
    
    
        /**
         * @return the number of characters from the unc path that were consumed by this referral
         */
        int getPathConsumed ();
    
    
        /**
         * @return the replacement path for this referal
         */
        String getPath ();
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  8. docs/es/README.md

    *[Fess Site Search](https://github.com/codelibs/fess-site-search)* es una alternativa gratuita a [Google Site Search](https://enterprise.google.com/search/products/gss.html). Para más detalles, consulta la [documentación de FSS JS Generator](https://fss-generator.codelibs.org/docs/manual).
    
    ## Sitio web
    
    [fess.codelibs.org](https://fess.codelibs.org/)
    
    ## Problemas/Preguntas
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Response.kt

    import okhttp3.internal.http.parseChallenges
    import okio.Buffer
    
    /**
     * An HTTP response. Instances of this class are not immutable: the response body is a one-shot
     * value that may be consumed only once and then closed. All other properties are immutable.
     *
     * This class implements [Closeable]. Closing it simply closes its response body. See
     * [ResponseBody] for an explanation and examples.
     */
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jul 06 09:38:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/debugging.md

    Então, a linha:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    não será executada.
    
    /// info | "Informação"
    
    Para mais informações, consulte <a href="https://docs.python.org/3/library/__main__.html" class="external-link" target="_blank">a documentação oficial do Python</a>.
    
    ///
    
    ## Execute seu código com seu depurador
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top