Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 226 for inf (0.02 sec)

  1. src/math/big/rat_test.go

    	if math.Abs(float64(f)) >= math.MaxFloat32 {
    		// Cannot check +Inf, -Inf, nor the float next to them (MaxFloat32).
    		// But we have tests for these special cases.
    		return true
    	}
    
    	// r must be strictly between f0 and f1, the floats bracketing f.
    	f0 := math.Nextafter32(f, float32(math.Inf(-1)))
    	f1 := math.Nextafter32(f, float32(math.Inf(+1)))
    
    	// For f to be correct, r must be closer to f than to f0 or f1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/design/admin_design.jsp

                key="labels.design_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: Wed Feb 12 20:25:27 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

                key="labels.maintenance_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="log"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/math/j0.go

    //         where x0 = x-pi/4. It is better to compute sin(x0),cos(x0)
    //         by the method mentioned above.
    //      3. Special cases: y0(0)=-inf, y0(x<0)=NaN, y0(inf)=0.
    //
    
    // J0 returns the order-zero Bessel function of the first kind.
    //
    // Special cases are:
    //
    //	J0Inf) = 0
    //	J0(0) = 1
    //	J0(NaN) = NaN
    func J0(x float64) float64 {
    	const (
    		Huge   = 1e300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  5. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "preemption_victims",
    			Help:      "Number of selected preemption victims",
    			// we think #victims>64 is pretty rare, therefore [64, +Inf) is considered a single bucket.
    			Buckets:        metrics.ExponentialBuckets(1, 2, 7),
    			StabilityLevel: metrics.STABLE,
    		})
    	PreemptionAttempts = metrics.NewCounter(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                key="labels.search_list_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="log"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Sep 24 13:09:22 UTC 2020
    - 20K bytes
    - Viewed (0)
  7. src/math/big/ftoa.go

    func (x *Float) Append(buf []byte, fmt byte, prec int) []byte {
    	// sign
    	if x.neg {
    		buf = append(buf, '-')
    	}
    
    	// Inf
    	if x.form == inf {
    		if !x.neg {
    			buf = append(buf, '+')
    		}
    		return append(buf, "Inf"...)
    	}
    
    	// pick off easy formats
    	switch fmt {
    	case 'b':
    		return x.fmtB(buf)
    	case 'p':
    		return x.fmtP(buf)
    	case 'x':
    		return x.fmtX(buf, prec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="2.62144"} 5
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="Inf"} 5
            	apiextensions_apiserver_validation_ratcheting_seconds_sum 5e-09
            	apiextensions_apiserver_validation_ratcheting_seconds_count 5
    			`,
    			iters: 5,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasherTest.groovy

        }
    
        def "uses delegate for META-INF files that are not manifest files"() {
            def delegate = Mock(ResourceHasher)
            useDelegate(delegate)
    
            when:
            hasher.hash(zipEntry('META-INF/foo'))
            hasher.hash(zipEntry('META-INF/foo/MANIFEST.MF'))
            hasher.hash(zipEntry('META-INF/properties'))
            hasher.hash(zipEntry('META-INF/build.propertiesX'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    		},
    		{
    			example: hex("fbc010666666666666"),
    			decoded: -4.1,
    		},
    		// TODO: Should Inf/-Inf/NaN be supported? Current Protobuf will encode this, but
    		// JSON will produce an error.  This is less than ideal -- we can't transcode
    		// everything to JSON.
    		{
    			example: hex("f97c00"),
    			decoded: math.Inf(1),
    		},
    		{
    			example: hex("f97e00"),
    			decoded: math.Float64frombits(0x7ff8000000000000),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top