Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 489 for INF (0.02 sec)

  1. src/math/log1p.go

    //                   ln2_hi + ln2_lo,
    //      where n*ln2_hi is always exact for |n| < 2000.
    //
    // Special cases:
    //      log1p(x) is NaN with signal if x < -1 (including -INF) ;
    //      log1p(+INF) is +INF; log1p(-1) is -INF with signal;
    //      log1p(NaN) is that NaN with no signal.
    //
    // Accuracy:
    //      according to an error analysis, the error is always less than
    //      1 ulp (unit in the last place).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/multiproject/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    1.class package com.example.goodbye; synchronized class GoodbyePlugin$1 implements org.gradle.api.Action { void GoodbyePlugin$1(GoodbyePlugin); public void execute(org.gradle.api.Task); } META-INF/gradle-plugins/com.example.goodbye.properties implementation-class=com.example.goodbye.GoodbyePlugin META-INF/gradle-plugins/com.example.hello.properties implementation-class=com.example.hello.HelloPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

                key="labels.scheduledjob_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="system"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/amount.go

    import (
    	"math/big"
    	"strconv"
    
    	inf "gopkg.in/inf.v0"
    )
    
    // Scale is used for getting and setting the base-10 scaled value.
    // Base-2 scales are omitted for mathematical simplicity.
    // See Quantity.ScaledValue for more details.
    type Scale int32
    
    // infScale adapts a Scale value to an inf.Scale value.
    func (s Scale) infScale() inf.Scale {
    	return inf.Scale(-s) // inf.Scale is upside-down
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 19:42:28 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/upgrade/admin_upgrade.jsp

    			key="labels.upgrade_title_configuration" /></title>
    	<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    	<div class="wrapper">
    		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
    		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
    			<jsp:param name="menuCategoryType" value="system" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/math/expm1.go

    // Expm1 returns e**x - 1, the base-e exponential of x minus 1.
    // It is more accurate than [Exp](x) - 1 when x is near zero.
    //
    // Special cases are:
    //
    //	Expm1(+Inf) = +Inf
    //	Expm1(-Inf) = -1
    //	Expm1(NaN) = NaN
    //
    // Very large values overflow to -1 or +Inf.
    func Expm1(x float64) float64 {
    	if haveArchExpm1 {
    		return archExpm1(x)
    	}
    	return expm1(x)
    }
    
    func expm1(x float64) float64 {
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jdcasey Build-Jdk: 1.5.0_07 META-INF/plexus/components.xml org.apache.maven.artifact.handler.ArtifactHandler test org.apache.maven.artifact.handler.DefaultArtifactHandl test jar java true org.apache.maven.lifecycle.mapping.LifecycleMapping test org.apache.maven.lifecycle.mapping.DefaultLifecycleMapp default org.apache.maven.plugins:maven-install-plugin:install org.apache.maven.plugi...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. src/math/ldexp.go

    // license that can be found in the LICENSE file.
    
    package math
    
    // Ldexp is the inverse of [Frexp].
    // It returns frac × 2**exp.
    //
    // Special cases are:
    //
    //	Ldexp(±0, exp) = ±0
    //	LdexpInf, exp) = ±Inf
    //	Ldexp(NaN, exp) = NaN
    func Ldexp(frac float64, exp int) float64 {
    	if haveArchLdexp {
    		return archLdexp(frac, exp)
    	}
    	return ldexp(frac, exp)
    }
    
    func ldexp(frac float64, exp int) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/math/exp.go

    // license that can be found in the LICENSE file.
    
    package math
    
    // Exp returns e**x, the base-e exponential of x.
    //
    // Special cases are:
    //
    //	Exp(+Inf) = +Inf
    //	Exp(NaN) = NaN
    //
    // Very large values overflow to 0 or +Inf.
    // Very small values underflow to 1.
    func Exp(x float64) float64 {
    	if haveArchExp {
    		return archExp(x)
    	}
    	return exp(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ear/earCustomized/groovy/ear/build.gradle

        earlib group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
    }
    
    tasks.named('ear') {
        appDirectory = file('src/main/app')  // use application metadata found in this folder
        libDirName 'APP-INF/lib' // put dependent libraries into APP-INF/lib inside the generated EAR
        deploymentDescriptor {  // custom entries for application.xml:
    //      fileName = "application.xml"  // same as the default value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top