Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for significand (0.19 sec)

  1. android/guava/src/com/google/common/math/DoubleUtils.java

        }
    
        /*
         * We need the top SIGNIFICAND_BITS + 1 bits, including the "implicit" one bit. To make rounding
         * easier, we pick out the top SIGNIFICAND_BITS + 2 bits, so we have one to help us round up or
         * down. twiceSignifFloor will contain the top SIGNIFICAND_BITS + 2 bits, and signifFloor the
         * top SIGNIFICAND_BITS + 1.
         *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 28 15:37:52 GMT 2021
    - 5.1K bytes
    - Viewed (0)
  2. docs/pt/docs/deployment/versions.md

    Caso você utilize o arquivo `requirements.txt`, você poderia especificar a versão com:
    
    ```txt
    fastapi==0.45.0
    ```
    
    Isso significa que você conseguiria utilizar a versão exata `0.45.0`.
    
    Ou, você poderia fixá-la com:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    isso significa que você iria usar as versões `0.45.0` ou acima, mas inferiores à `0.46.0`, por exemplo, a versão `0.45.2` ainda seria aceita.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jul 29 20:14:40 GMT 2021
    - 3.8K bytes
    - Viewed (0)
  3. .cm/plugins/filters/summaryTable/index.js

        } else {
            result += "1 platform was affected";
        }
        if (platformsWithSignificantChanges.length > 1) {
            result += " (:warning: if possible, only one platform should have significant changes in a PR)";
        } else {
            result += " ";
        }
        return result;
    }
    
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

            """
    
            when:
            run('checkDeadInternalLinks').buildAndFail()
    
            then:
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Nov 28 22:01:54 GMT 2022
    - 7.8K bytes
    - Viewed (0)
  5. .github/pull_request_template.md

    and
    https://github.com/google/guava/blob/master/CONTRIBUTING.md
    before sending a pull request.
    
    We generally welcome PRs for fixing trivial bugs or typos, but please refrain
    from sending a PR with significant changes unless explicitly requested.
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Oct 27 19:53:41 GMT 2023
    - 371 bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/50_maintainer_chore.yml

    name: Chore
    description: Minor issue without significant impact
    labels: [ "a:chore", "to-triage" ]
    assignees: [ ]
    body:
      - type: dropdown
        id: issue-type
        attributes:
          label: Issue type
          options:
            - Polishing
            - Deprecation
            - Refactoring
            - Other
        validations:
          required: true
      - type: textarea
        id: description
        attributes:
          label: Problem description
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Sep 12 11:52:53 GMT 2023
    - 856 bytes
    - Viewed (0)
  7. doc/next/6-stdlib/1-time.md

    ### Timer changes
    
    Go 1.23 makes two significant changes to the implementation of
    [time.Timer] and [time.Ticker].
    
    First, `Timer`s and `Ticker`s that are no longer referred to by the program
    become eligible for garbage collection immediately, even if their
    `Stop` methods have not been called.
    Earlier versions of Go did not collect unstopped `Timer`s until after
    they had fired and never collected unstopped `Ticker`s.
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  8. docs/es/docs/deployment/versions.md

    Si usas el archivo `requirements.txt` puedes especificar la versión con:
    
    ```txt
    fastapi==0.45.0
    ```
    
    esto significa que usarás específicamente la versión `0.45.0`.
    
    También puedes fijar las versiones de esta forma:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    esto significa que usarás la versión `0.45.0` o superiores, pero menores a la versión `0.46.0`, por ejemplo, la versión `0.45.2` sería aceptada.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Feb 07 11:55:38 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  9. docs/pt/docs/python-types.md

    ```
    
    Isso significa que:
    
    * A variável `prices` é um dict`:
        * As chaves deste `dict` são do tipo `str` (digamos, o nome de cada item).
        * Os valores deste `dict` são do tipo `float` (digamos, o preço de cada item).
    
    #### `Opcional`
    
    Você também pode usar o `Opcional` para declarar que uma variável tem um tipo, como `str`, mas que é "opcional", o que significa que também pode ser `None`:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  10. docs/es/docs/deployment/index.md

    # Despliegue - Introducción
    
    Desplegar una aplicación hecha con **FastAPI** es relativamente fácil.
    
    ## ¿Qué significa desplegar una aplicación?
    
    **Desplegar** una aplicación significa realizar una serie de pasos para hacerla **disponible para los usuarios**.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Feb 07 11:55:38 GMT 2024
    - 1.4K bytes
    - Viewed (0)
Back to top