Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for copySign (0.19 sec)

  1. .idea/dictionaries/svyatoslav_kuzmich.xml

    <component name="ProjectDictionaryState">
      <dictionary name="svyatoslav.kuzmich">
        <words>
          <w>anyfunc</w>
          <w>copysign</w>
          <w>eqref</w>
          <w>exnref</w>
          <w>externref</w>
          <w>funcref</w>
          <w>jetbrains</w>
          <w>kotlinx</w>
          <w>ktor</w>
          <w>optref</w>
          <w>popcnt</w>
          <w>rotl</w>
          <w>rotr</w>
          <w>simd</w>
          <w>sqrt</w>
          <w>testsuite</w>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Oct 12 05:42:01 GMT 2021
    - 594 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/DoubleMath.java

       * @since 13.0
       */
      public static boolean fuzzyEquals(double a, double b, double tolerance) {
        MathPreconditions.checkNonNegative("tolerance", tolerance);
        return Math.copySign(a - b, 1.0) <= tolerance
            // copySign(x, 1.0) is a branch-free version of abs(x), but with different NaN semantics
            || (a == b) // needed to ensure that infinities equal themselves
            || (Double.isNaN(a) && Double.isNaN(b));
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  3. licenses/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Oct 28 19:33:59 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  4. licenses/github.com/alecthomas/participle/v2/COPYING

    John Howard <******@****.***> 1712595956 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 17:05:56 GMT 2024
    - 1K bytes
    - Viewed (0)
  5. licenses/github.com/BurntSushi/toml/COPYING

    John Howard <******@****.***> 1572058059 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  6. licenses/github.com/google/shlex/COPYING

    John Howard <******@****.***> 1619132365 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 22 22:59:25 GMT 2021
    - 11.1K bytes
    - Viewed (0)
  7. licenses/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Oct 28 19:33:59 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  8. licenses/github.com/BurntSushi/toml/internal/toml-test/COPYING

    John Howard <******@****.***> 1643929095 -0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 03 22:58:15 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  9. licenses/github.com/alecthomas/participle/COPYING

    Rama Chavali <******@****.***> 1657816233 +0530
    Plain Text
    - Registered: Wed Apr 03 22:53:10 GMT 2024
    - Last Modified: Thu Jul 14 16:30:33 GMT 2022
    - 1K bytes
    - Viewed (0)
  10. licenses/github.com/BurntSushi/toml/cmd/tomlv/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Oct 28 19:33:59 GMT 2019
    - 1.1K bytes
    - Viewed (0)
Back to top