Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 147 for inf (0.41 sec)

  1. src/math/lgamma.go

    }
    
    // Lgamma returns the natural logarithm and sign (-1 or +1) of [Gamma](x).
    //
    // Special cases are:
    //
    //	Lgamma(+Inf) = +Inf
    //	Lgamma(0) = +Inf
    //	Lgamma(-integer) = +Inf
    //	Lgamma(-Inf) = -Inf
    //	Lgamma(NaN) = NaN
    func Lgamma(x float64) (lgamma float64, sign int) {
    	const (
    		Ymin  = 1.461632144968362245
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

            def classpath = getClasspath()
            classpath.assertHasLibs('foo-1.0.jar', 'bar-1.0.jar', 'baz-1.0.jar')
            classpath.lib('foo-1.0.jar').assertIsDeployedTo('/WEB-INF/lib')
            classpath.lib('bar-1.0.jar').assertIsDeployedTo('/WEB-INF/lib')
            classpath.lib('baz-1.0.jar').assertIsExcludedFromDeployment()
    
            // Facets
            wtpFacets.assertFacetVersion('gradleFacet', '1.333')
    
            // Component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/testdata/image_pull_duration_metric

    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="2700"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="3600"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="Inf"} 1
    kubelet_image_pull_duration_seconds_sum{image_size_in_bytes="0-10MB"} 10
    kubelet_image_pull_duration_seconds_count{image_size_in_bytes="0-10MB"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginIntegrationTest.groovy

            goodPlugin()
    
            expect:
            succeeds "jar"
            def jar = new JarTestFixture(file('build/libs/test.jar'))
            jar.assertContainsFile('META-INF/gradle-plugins/test-plugin.properties') &&
                jar.assertFileContent('META-INF/gradle-plugins/test-plugin.properties', descriptorFile.text)
            jar.assertContainsFile('com/xxx/TestPlugin.class')
            ! output.contains(NO_DESCRIPTOR_WARNING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                    'org/gradle/MyFirstClass.class',
                    'META-INF/',
                    'META-INF/services/',
                    'META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices',
                    'META-INF/services/org.gradle.internal.other.Service',
                    'META-INF/.gradle-runtime-shaded']
            }
            outputJar.md5Hash == "898989a29248bd8e44197d087164496a"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    */
    
    package resource
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"math"
    	"math/big"
    	"strconv"
    	"strings"
    
    	cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
    
    	inf "gopkg.in/inf.v0"
    )
    
    // Quantity is a fixed-point representation of a number.
    // It provides convenient marshaling/unmarshaling in JSON and YAML,
    // in addition to String() and AsInt64() accessors.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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 (1)
  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