Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 185 for inf (0.07 sec)

  1. src/math/big/float.go

    	z.acc = Exact
    	if x.form == zero && y.form == inf || x.form == inf && y.form == zero {
    		// ±0 * ±Inf
    		// ±Inf * ±0
    		// value of z is undefined but make sure it's valid
    		z.form = zero
    		z.neg = false
    		panic(ErrNaN{"multiplication of zero with infinity"})
    	}
    
    	if x.form == inf || y.form == inf {
    		// ±Inf * y
    		// x * ±Inf
    		z.form = inf
    		return z
    	}
    
    	// ±0 * y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            def classFile = file("build/classes/java/main/Thing.class")
            classFile.isFile()
            def jarFile = file("build/libs/somelib.jar")
            new ZipTestFixture(jarFile).hasDescendants("META-INF/MANIFEST.MF", "Thing.class", "answer.txt", "META-INF/some.Service")
    
            when:
            configurationCacheRun "build"
    
            then:
            assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. pkg/kube/kclient/client.go

    	inf := kubeclient.GetInformerFilteredFromGVR(c, opts, gvr)
    	return newInformerClient[controllers.Object](gvr, inf, filter)
    }
    
    // NewMetadata returns a metadata client for a given GVR. This is read-only.
    func NewMetadata(c kube.Client, gvr schema.GroupVersionResource, filter Filter) Informer[*metav1.PartialObjectMetadata] {
    	opts := ToOpts(c, gvr, filter)
    	opts.InformerType = kubetypes.MetadataInformer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

            }
            // WEB-INF/lib
            appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/lib")),
                    "WEB-INF" + File.separator + "lib" + File.separator);
            // WEB-INF/env/thumbnail/lib
            appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/SuggestJob.java

            }
            // WEB-INF/lib
            appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/lib")),
                    "WEB-INF" + File.separator + "lib" + File.separator);
            // WEB-INF/env/suggest/lib
            appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/float_test.go

    	}
    	if math.Copysign(math.NaN(), -1) < math.NaN() {
    		t.Errorf("math.Copysign(math.NaN(), -1) < math.NaN() returned true")
    	}
    	if math.Inf(1) != math.Inf(1) {
    		t.Errorf("math.Inf(1) != math.Inf(1) returned true")
    	}
    	if math.Inf(-1) != math.Inf(-1) {
    		t.Errorf("math.Inf(-1) != math.Inf(-1) returned true")
    	}
    	if math.Copysign(0, -1) != 0 {
    		t.Errorf("math.Copysign(0, -1) != 0 returned true")
    	}
    	if math.Copysign(0, -1) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top