Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Correspondence (0.39 sec)

  1. android/guava-tests/test/com/google/common/math/QuantilesTest.java

      private static final double ALLOWED_ERROR = 1.0e-10;
    
      /**
       * A {@link Correspondence} which accepts finite values within {@link #ALLOWED_ERROR} of each
       * other.
       */
      private static final Correspondence<Number, Number> FINITE_QUANTILE_CORRESPONDENCE =
          Correspondence.tolerance(ALLOWED_ERROR);
    
      /**
       * A {@link Correspondence} which accepts either finite values within {@link #ALLOWED_ERROR} of
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/BiMap.java

       * associated key. The two bimaps are backed by the same data; any changes to one will appear in
       * the other.
       *
       * <p><b>Note:</b>There is no guaranteed correspondence between the iteration order of a bimap and
       * that of its inverse.
       *
       * @return the inverse view of this bimap
       */
      BiMap<V, K> inverse();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/BiMap.java

       * associated key. The two bimaps are backed by the same data; any changes to one will appear in
       * the other.
       *
       * <p><b>Note:</b>There is no guaranteed correspondence between the iteration order of a bimap and
       * that of its inverse.
       *
       * @return the inverse view of this bimap
       */
      BiMap<V, K> inverse();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Streams.java

       * }</pre>
       *
       * <p>will print:
       *
       * <pre>{@code
       * foo1:bar1
       * foo2:bar2
       * }</pre>
       *
       * <p><b>Warning:</b> If either supplied stream is a parallel stream, the same correspondence
       * between elements will be made, but the order in which those pairs of elements are passed to the
       * consumer is <i>not</i> defined.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Streams.java

       * }</pre>
       *
       * <p>will print:
       *
       * <pre>{@code
       * foo1:bar1
       * foo2:bar2
       * }</pre>
       *
       * <p><b>Warning:</b> If either supplied stream is a parallel stream, the same correspondence
       * between elements will be made, but the order in which those pairs of elements are passed to the
       * consumer is <i>not</i> defined.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/middleware.md

    A função middleware recebe:
    
    * A `request`.
    * Uma função `call_next` que receberá o `request` como um parâmetro.
        * Esta função passará a `request` para a *operação de rota* correspondente.
        * Então ela retorna a `response` gerada pela *operação de rota* correspondente.
    * Você pode então modificar ainda mais o `response` antes de retorná-lo.
    
    ```Python hl_lines="8-9  11  14"
    {!../../docs_src/middleware/tutorial001.py!}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.reqheader_web_crawling_config	=	Configuration Web
    labels.key_match_configuration	=	Correspondance clé
    labels.key_match_list_term	=	Terme
    labels.key_match_list_query	=	Requête
    labels.key_match_term	=	Terme
    labels.key_match_query	=	Requête
    labels.key_match_size	=	Taille
    labels.key_match_boost	=	Booster
    labels.key_match_urls	=	URL
    labels.key_match_title_details	=	Correspondance clé
    labels.design_configuration	=	Conception de pages
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  8. docs/pt/docs/help-fastapi.md

        * Não se esqueça de adicionar o link no começo da seção correspondente.
    * Para ajudar [traduzir a documentação](contributing.md#traducoes){.internal-link target=_blank} para sua lingua.
        * Também é possivel revisar as traduções já existentes.
    * Para propor novas seções na documentação.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/query-params-str-validations.md

    ## Ajouter des validations par expressions régulières
    
    On peut définir une <abbr title="Une expression régulière, regex ou regexp est une suite de caractères qui définit un pattern de correspondance pour les chaînes de caractères.">expression régulière</abbr> à laquelle le paramètre doit correspondre :
    
    {* ../../docs_src/query_params_str_validations/tutorial004.py hl[10] *}
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 17:14:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/dependencies/index.md

    ## Caso de Uso Simples
    
    Se você parar para ver, *funções de operação de rota* são declaradas para serem usadas sempre que uma *rota* e uma *operação* se encaixam, e então o **FastAPI** se encarrega de chamar a função correspondente com os argumentos corretos, extraindo os dados da requisição.
    
    Na verdade, todos (ou a maioria) dos frameworks web funcionam da mesma forma.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top