Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 489 for INF (0.09 sec)

  1. src/math/big/floatexample_test.go

    	//   -0  +Inf   -1
    	//
    	//    0  -Inf    1
    	//    0  -1.2    1
    	//    0    -0    0
    	//    0     0    0
    	//    0   1.2   -1
    	//    0  +Inf   -1
    	//
    	//  1.2  -Inf    1
    	//  1.2  -1.2    1
    	//  1.2    -0    1
    	//  1.2     0    1
    	//  1.2   1.2    0
    	//  1.2  +Inf   -1
    	//
    	// +Inf  -Inf    1
    	// +Inf  -1.2    1
    	// +Inf    -0    1
    	// +Inf     0    1
    	// +Inf   1.2    1
    	// +Inf  +Inf    0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pkg/kube/kclient/delayed.go

    func (s *delayedClient[T]) set(inf Informer[T]) {
    	if inf != nil {
    		s.inf.Swap(&inf)
    		s.hm.Lock()
    		defer s.hm.Unlock()
    		for _, h := range s.handlers {
    			inf.AddEventHandler(h)
    		}
    		s.handlers = nil
    		if s.started != nil {
    			inf.Start(s.started)
    		}
    	}
    }
    
    type delayedFilter struct {
    	Watcher  kubetypes.CrdWatcher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 31 02:32:59 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/math/all_test.go

    	{+Pi, NaN()},
    	{Inf(1), Inf(-1)},
    	{Inf(1), -Pi},
    	{Inf(1), 0},
    	{Inf(1), +Pi},
    	{Inf(1), Inf(1)},
    	{Inf(1), NaN()},
    	{NaN(), NaN()},
    }
    var atan2SC = []float64{
    	-3 * Pi / 4,     // atan2(-Inf, -Inf)
    	-Pi / 2,         // atan2(-Inf, -Pi)
    	-Pi / 2,         // atan2(-Inf, +0)
    	-Pi / 2,         // atan2(-Inf, +Pi)
    	-Pi / 4,         // atan2(-Inf, +Inf)
    	NaN(),           // atan2(-Inf, NaN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  4. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertContainsFile('META-INF/MANIFEST.MF')
            war.assertContainsFile('META-INF/metainf1/file2.txt')
            war.assertContainsFile('content1/file1.jsp')
            war.assertContainsFile('WEB-INF/lib/lib.jar')
            war.assertContainsFile('WEB-INF/classes/org/gradle/resource.txt')
            war.assertContainsFile('WEB-INF/classes/org/gradle/Person.class')
            war.assertContainsFile('WEB-INF/webinf1/file1.txt')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/math/dim.go

    package math
    
    // Dim returns the maximum of x-y or 0.
    //
    // Special cases are:
    //
    //	Dim(+Inf, +Inf) = NaN
    //	Dim(-Inf, -Inf) = NaN
    //	Dim(x, NaN) = Dim(NaN, x) = NaN
    func Dim(x, y float64) float64 {
    	// The special cases result in NaN after the subtraction:
    	//      +Inf - +Inf = NaN
    	//      -Inf - -Inf = NaN
    	//       NaN - y    = NaN
    	//         x - NaN  = NaN
    	v := x - y
    	if v <= 0 {
    		// v is negative or 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 15 19:45:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            then:
            def ear = new JarTestFixture(file('build/libs/root.ear'))
            ear.assertContainsFile("META-INF/MANIFEST.MF")
            ear.assertContainsFile("META-INF/application.xml")
            def appXml = new XmlSlurper().parse(file('unzipped/META-INF/application.xml'))
            def module = appXml.module[0].web
            module."web-uri" == "root.war"
            module."context-root" == "anywhere"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. src/strconv/atof_test.go

    	{"2e308", "+Inf", ErrRange},
    	{"1e309", "+Inf", ErrRange},
    	{"0x1p1025", "+Inf", ErrRange},
    
    	// way too large
    	{"1e310", "+Inf", ErrRange},
    	{"-1e310", "-Inf", ErrRange},
    	{"1e400", "+Inf", ErrRange},
    	{"-1e400", "-Inf", ErrRange},
    	{"1e400000", "+Inf", ErrRange},
    	{"-1e400000", "-Inf", ErrRange},
    	{"0x1p1030", "+Inf", ErrRange},
    	{"0x1p2000", "+Inf", ErrRange},
    	{"0x1p2000000000", "+Inf", ErrRange},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  8. src/math/pow_s390x.s

    //      Pow(x, NaN) = NaN
    //      Pow(±0, y) = ±Inf for y an odd integer < 0
    //      Pow(±0, -Inf) = +Inf
    //      Pow(±0, +Inf) = +0
    //      Pow(±0, y) = +Inf for finite y < 0 and not an odd integer
    //      Pow(±0, y) = ±0 for y an odd integer > 0
    //      Pow(±0, y) = +0 for finite y > 0 and not an odd integer
    //      Pow(-1, ±Inf) = 1
    //      Pow(x, +Inf) = +Inf for |x| > 1
    //      Pow(x, -Inf) = +0 for |x| > 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. src/math/pow.go

    //	Pow(x, NaN) = NaN
    //	Pow(±0, y) = ±Inf for y an odd integer < 0
    //	Pow(±0, -Inf) = +Inf
    //	Pow(±0, +Inf) = +0
    //	Pow(±0, y) = +Inf for finite y < 0 and not an odd integer
    //	Pow(±0, y) = ±0 for y an odd integer > 0
    //	Pow(±0, y) = +0 for finite y > 0 and not an odd integer
    //	Pow(-1, ±Inf) = 1
    //	Pow(x, +Inf) = +Inf for |x| > 1
    //	Pow(x, -Inf) = +0 for |x| > 1
    //	Pow(x, +Inf) = +0 for |x| < 1
    //	Pow(x, -Inf) = +Inf for |x| < 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:10:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

            run 'jar'
    
            then:
            def jar = new JarTestFixture(file('build/test.jar'))
            jar.assertContainsFile('META-INF/MANIFEST.MF')
            jar.assertContainsFile('META-INF/dir2/file2.xml')
            jar.assertContainsFile('META-INF/dir3/file2.txt')
            jar.assertContainsFile('META-INF/dir3/file2.xml')
            jar.assertContainsFile('dir1/file1.txt')
        }
    
        def usesManifestFromJarTaskWhenMergingJars() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top