Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Taylor (0.1 sec)

  1. src/math/erf.go

    //              erfc(x) = (1-c)  - P1(s)/Q1(s) if x > 0
    //                        1+(c+P1(s)/Q1(s))    if x < 0
    //              |P1/Q1 - (erf(|x|)-c)| <= 2**-59.06
    //         Remark: here we use the taylor series expansion at x=1.
    //              erf(1+s) = erf(1) + s*Poly(s)
    //                       = 0.845.. + P1(s)/Q1(s)
    //         That is, we use rational approximation to approximate
    Registered: 2024-06-12 16:32
    - Last Modified: 2022-04-11 16:34
    - 11.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multimap.java

     *   List<String> lastNames = multimap.get(firstName);
     *   out.println(firstName + ": " + lastNames);
     * }
     * }</pre>
     *
     * ... produces output such as:
     *
     * <pre>{@code
     * Zachary: [Taylor]
     * John: [Adams, Adams, Tyler, Kennedy]  // Remember, Quincy!
     * George: [Washington, Bush, Bush]
     * Grover: [Cleveland, Cleveland]        // Two, non-consecutive terms, rep'ing NJ!
     * ...
     * }</pre>
     *
    Registered: 2024-06-12 16:38
    - Last Modified: 2023-06-17 14:40
    - 15.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimap.java

     *   List<String> lastNames = multimap.get(firstName);
     *   out.println(firstName + ": " + lastNames);
     * }
     * }</pre>
     *
     * ... produces output such as:
     *
     * <pre>{@code
     * Zachary: [Taylor]
     * John: [Adams, Adams, Tyler, Kennedy]  // Remember, Quincy!
     * George: [Washington, Bush, Bush]
     * Grover: [Cleveland, Cleveland]        // Two, non-consecutive terms, rep'ing NJ!
     * ...
     * }</pre>
     *
    Registered: 2024-06-12 16:38
    - Last Modified: 2023-06-17 14:40
    - 15.1K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/handling-errors.md

    O benefício de lançar uma exceção em vez de retornar um valor ficará mais evidente na seção sobre Dependências e Segurança.
    
    Neste exemplo, quando o cliente pede, na requisição, por um item cujo ID não existe, a exceção com o status code `404` é lançada:
    
    ```Python hl_lines="11"
    Registered: 2024-06-17 08:32
    - Last Modified: 2024-03-22 01:42
    - 10K bytes
    - Viewed (0)
  5. docs/pt/docs/features.md

    }
    
    my_second_user: User = User(**second_user_data)
    ```
    
    !!! info
        `**second_user_data` quer dizer:
    
        Passe as chaves e valores do dicionário `second_user_data` diretamente como argumentos chave-valor, equivalente a: `User(id=4, name="Mary", joined="2018-11-30")`
    
    ### Suporte de editores
    
    Registered: 2024-06-17 08:32
    - Last Modified: 2024-04-18 19:53
    - 10.4K bytes
    - Viewed (0)
  6. docs/es/docs/async.md

    Sólo las comes y listo 🍔 ⏹.
    
    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-06.png" alt="illustration">
    
    No has hablado ni coqueteado mucho, ya que has pasado la mayor parte del tiempo esperando 🕙 frente al mostrador 😞.
    
    !!! info
         Las ilustraciones fueron creados por <a href="https://www.instagram.com/ketrinadrawsalot" class="external-link" target="_blank">Ketrina Thompson</a>. 🎨
    
    Registered: 2024-06-17 08:32
    - Last Modified: 2024-04-18 19:53
    - 24.9K bytes
    - Viewed (0)
  7. src/encoding/gob/codec_test.go

    		N:        &[3]float64{1.5, 2.5, 3.5},
    		Strs:     &[2]string{s1, s2},
    		Int64s:   &[]int64{77, 89, 123412342134},
    		RI:       17 - 23i,
    		S:        "Now is the time",
    		Y:        []byte("hello, sailor"),
    		T:        &T2{"this is T2"},
    	}
    	b := new(bytes.Buffer)
    	err := NewEncoder(b).Encode(t1)
    	if err != nil {
    		t.Error("encode:", err)
    	}
    	var _t1 T1
    	err = NewDecoder(b).Decode(&_t1)
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-08-19 23:03
    - 36.9K bytes
    - Viewed (0)
  8. docs/az/docs/index.md

    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    <a href="https://fastapi.tiangolo.com/az/fastapi-people/#sponsors" class="external-link" target="_blank">Digər sponsorlar</a>
    
    ## Rəylər
    
    Registered: 2024-06-17 08:32
    - Last Modified: 2024-04-29 05:18
    - 22.8K bytes
    - Viewed (0)
  9. docs/pt/docs/async.md

    Então, quando é sua vez, você faz o trabalho "produtivo" de verdade, você processa o menu, decide o que quer, pega a escolha de seu _crush_ :heart_eyes:, paga, verifica se entregou o valor correto em dinheiro ou cartão de crédito, verifica se foi cobrado corretamente, verifica se seu pedido está correto etc.
    
    Registered: 2024-06-17 08:32
    - Last Modified: 2024-04-18 19:53
    - 22.2K bytes
    - Viewed (0)
Back to top