Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for 1e81c9 (0.11 sec)

  1. src/math/pow10.go

    package math
    
    // pow10tab stores the pre-computed values 10**i for i < 32.
    var pow10tab = [...]float64{
    	1e00, 1e01, 1e02, 1e03, 1e04, 1e05, 1e06, 1e07, 1e08, 1e09,
    	1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19,
    	1e20, 1e21, 1e22, 1e23, 1e24, 1e25, 1e26, 1e27, 1e28, 1e29,
    	1e30, 1e31,
    }
    
    // pow10postab32 stores the pre-computed value for 10**(i*32) at index i.
    var pow10postab32 = [...]float64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/image/jpeg/fdct.go

    	fix_0_390180644 = 3196
    	fix_0_541196100 = 4433
    	fix_0_765366865 = 6270
    	fix_0_899976223 = 7373
    	fix_1_175875602 = 9633
    	fix_1_501321110 = 12299
    	fix_1_847759065 = 15137
    	fix_1_961570560 = 16069
    	fix_2_053119869 = 16819
    	fix_2_562915447 = 20995
    	fix_3_072711026 = 25172
    )
    
    const (
    	constBits     = 13
    	pass1Bits     = 2
    	centerJSample = 128
    )
    
    // fdct performs a forward DCT on an 8x8 block of coefficients, including a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 6K bytes
    - Viewed (0)
  3. docs/ru/docs/tutorial/extra-data-types.md

        ```
    
    Обратите внимание, что параметры внутри функции имеют свой естественный тип данных, и вы, например, можете выполнять обычные манипуляции с датами, такие как:
    
    === "Python 3.8 и выше"
    
        ```Python hl_lines="18-19"
        {!> ../../../docs_src/extra_data_types/tutorial001.py!}
        ```
    
    === "Python 3.10 и выше"
    
        ```Python hl_lines="17-18"
        {!> ../../../docs_src/extra_data_types/tutorial001_py310.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/extra-data-types.md

    {!../../../docs_src/extra_data_types/tutorial001.py!}
    ```
    
    Note que os parâmetros dentro da função tem seu tipo de dados natural, e você pode, por exemplo, realizar manipulações normais de data, como:
    
    ```Python hl_lines="18-19"
    {!../../../docs_src/extra_data_types/tutorial001.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. okhttp-sse/src/main/kotlin/okhttp3/sse/internal/ServerSentEventReader.kt

            in 13..14 -> {
              type = source.readUtf8LineStrict().takeIf { it.isNotEmpty() }
            }
    
            in 15..17 -> {
              type = null // 'event' on a line of its own
            }
    
            in 18..19 -> {
              val retryMs = source.readRetryMs()
              if (retryMs != -1L) {
                callback.onRetryChange(retryMs)
              }
            }
    
            -1 -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/path-operation-configuration.md

    {!../../../docs_src/path_operation_configuration/tutorial002b.py!}
    ```
    
    ## Краткое и развёрнутое содержание
    
    Вы можете добавить параметры `summary` и `description`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="18-19"
        {!> ../../../docs_src/path_operation_configuration/tutorial003_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="20-21"
        {!> ../../../docs_src/path_operation_configuration/tutorial003_py39.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/path-operation-configuration.md

    {!../../../docs_src/path_operation_configuration/tutorial002b.py!}
    ```
    
    ## Summary and description
    
    You can add a `summary` and `description`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="18-19"
        {!> ../../../docs_src/path_operation_configuration/tutorial003_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="20-21"
        {!> ../../../docs_src/path_operation_configuration/tutorial003_py39.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/path-operation-configuration.md

    ```
    
    ## Zusammenfassung und Beschreibung
    
    Sie können eine Zusammenfassung (`summary`) und eine Beschreibung (`description`) hinzufügen:
    
    === "Python 3.10+"
    
        ```Python hl_lines="18-19"
        {!> ../../../docs_src/path_operation_configuration/tutorial003_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="20-21"
        {!> ../../../docs_src/path_operation_configuration/tutorial003_py39.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/io/multi_test.go

    func TestMultiReaderFreesExhaustedReaders(t *testing.T) {
    	var mr Reader
    	closed := make(chan struct{})
    	// The closure ensures that we don't have a live reference to buf1
    	// on our stack after MultiReader is inlined (Issue 18819).  This
    	// is a work around for a limitation in liveness analysis.
    	func() {
    		buf1 := bytes.NewReader([]byte("foo"))
    		buf2 := bytes.NewReader([]byte("bar"))
    		mr = MultiReader(buf1, buf2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.18.md

    _Nothing has changed._
    
    
    
    # v1.18.19
    
    
    ## Downloads for v1.18.19
    
    ### Source Code
    
    filename | sha512 hash
    -------- | -----------
    [kubernetes.tar.gz](https://dl.k8s.io/v1.18.19/kubernetes.tar.gz) | 017e3f9def09f48756ffdd6655c94eba79941ee0e8ff3a7795ff8333d54a79a7d156a1ee895eaaa27c35fed09f9ec85b59a5b084eb7d292ca006d3bc1a8142a2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
Back to top