Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,084 for sinhe3 (0.19 sec)

  1. src/math/sinh_s390x.s

    DATA sinhe5<>+0(SB)/8, $0.97631072948627397816E-02
    GLOBL sinhe5<>+0(SB), RODATA, $8
    DATA sinhe6<>+0(SB)/8, $0.16271839297756073153E-02
    GLOBL sinhe6<>+0(SB), RODATA, $8
    DATA sinhe7<>+0(SB)/8, $0.23245485387271142509E-03
    GLOBL sinhe7<>+0(SB), RODATA, $8
    DATA sinhe8<>+0(SB)/8, $0.29080955860869629131E-04
    GLOBL sinhe8<>+0(SB), RODATA, $8
    DATA sinhe9<>+0(SB)/8, $0.32311267157667725278E-05
    GLOBL sinhe9<>+0(SB), RODATA, $8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  2. src/math/sinh.go

    package math
    
    /*
    	Floating-point hyperbolic sine and cosine.
    
    	The exponential func is called for arguments
    	greater in magnitude than 0.5.
    
    	A series is used for arguments smaller in magnitude than 0.5.
    
    	Cosh(x) is computed from the exponential func for
    	all arguments.
    */
    
    // Sinh returns the hyperbolic sine of x.
    //
    // Special cases are:
    //
    //	Sinh(±0) = ±0
    //	Sinh(±Inf) = ±Inf
    //	Sinh(NaN) = NaN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/math/cmplx/sin.go

    }
    
    // Complex hyperbolic sine
    //
    // DESCRIPTION:
    //
    // csinh z = (cexp(z) - cexp(-z))/2
    //         = sinh x * cos y  +  i cosh x * sin y .
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    IEEE      -10,+10     30000       3.1e-16     8.2e-17
    
    // Sinh returns the hyperbolic sine of x.
    func Sinh(x complex128) complex128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. docs/de/docs/help-fastapi.md

    * Um neue Dokumentationsabschnitte vorzuschlagen.
    * Um ein bestehendes Problem / einen bestehenden Bug zu beheben.
        * Stellen Sie sicher, dass Sie Tests hinzufügen.
    * Um eine neue Funktionalität hinzuzufügen.
        * Stellen Sie sicher, dass Sie Tests hinzufügen.
        * Stellen Sie sicher, dass Sie Dokumentation hinzufügen, falls das notwendig ist.
    
    ## FastAPI pflegen
    
    Helfen Sie mir, **FastAPI** instand zu halten! 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ConfigurableLauncher.java

         */
        @Override
        T setStandardError(OutputStream outputStream);
    
        /**
         * {@inheritDoc}
         * @since 2.3
         */
        @Override
        T setColorOutput(boolean colorOutput);
    
        /**
         * {@inheritDoc}
         * @since 1.0-milestone-7
         */
        @Override
        T setStandardInput(InputStream inputStream);
    
        /**
         * {@inheritDoc}
         * @since 1.0-milestone-8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         * @param parent the container problem group.
         * @return this
         * @since 8.8
         */
        ProblemSpec id(String name, String displayName, ProblemGroup parent);
    
        /**
         * Declares a short, but context-dependent message for this problem.
         *
         * @param contextualLabel the short message
         * @return this
         * @since 8.8
         */
        ProblemSpec contextualLabel(String contextualLabel);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

        /**
         * Java 11 major version.
         *
         * @since 4.7
         */
        VERSION_11,
    
        /**
         * Java 12 major version.
         *
         * @since 5.0
         */
        VERSION_12,
    
        /**
         * Java 13 major version.
         *
         * @since 6.0
         */
        VERSION_13,
    
        /**
         * Java 14 major version.
         *
         * @since 6.3
         */
        VERSION_14,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SinceAndIncubatingRulesKotlinTest.kt

            /** @since 2.0 */
            @Incubating
            fun foo() {}
    
            /** @since 2.0 */
            @get:Incubating
            val bar: String = "bar"
    
            /** @since 2.0 */
            @get:Incubating
            val bool: Boolean = true
    
            /** @since 2.0 */
            @get:Incubating
            val isBool: Boolean = true
    
            /** @since 2.0 */
            @get:Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

                        /**
                         * @since 11.38
                         */
                        field;
    
                        /**
                         * @since 11.38
                         */
                        void method() { }
                    }
                """
                : apiElement == 'annotation' ? """
                    /**
                     * @since 11.38
                     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/MoreObjects.java

       *
       * @param className the name of the instance type
       * @since 18.0 (since 7.0 as {@code Objects.toStringHelper()}).
       */
      public static ToStringHelper toStringHelper(String className) {
        return new ToStringHelper(className);
      }
    
      /**
       * Support class for {@link MoreObjects#toStringHelper}.
       *
       * @author Jason Lee
       * @since 18.0 (since 2.0 as {@code Objects.ToStringHelper}).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top