Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 226 for inf (0.02 sec)

  1. pkg/kubelet/certificate/kubelet.go

    				"serving certificate is invalid or unused, the value will " +
    				"be +INF.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		func() float64 {
    			if c := m.Current(); c != nil && c.Leaf != nil {
    				return math.Trunc(time.Until(c.Leaf.NotAfter).Seconds())
    			}
    			return math.Inf(1)
    		},
    	))
    	return m, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/fp_test.go

    	fail64(s, g, zero, inf, ev64[result>>8&1])
    	fail64(s, g, zero, nan, ev64[result>>4&1])
    	fail64(s, g, nan, nan, ev64[result>>0&1])
    
    	{
    		zero := float32(zero)
    		one := float32(one)
    		inf := float32(inf)
    		nan := float32(nan)
    		fail32bool(s, ff, zero, zero, (result>>16)&1 == 1)
    		fail32bool(s, ff, zero, one, (result>>12)&1 == 1)
    		fail32bool(s, ff, zero, inf, (result>>8)&1 == 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jvanzyl Build-Jdk: 1.6.0-dp org/codehaus/classworlds/BytesURLConnection.class package org.codehaus.classworlds; public synchronized class BytesURLConnection extends java.net.URLConnection { protected byte[] content; protected int offset; protected int length; public void BytesURLConnection(java.net.URL, byte[]); public void connect(); public java.io.InputStream getInputStream(); } o...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

                }
            """
    
            when:
            run "wrapper", "--no-validate-url"
    
            then:
            new ZipTestFixture(file("gradle/wrapper/gradle-wrapper.jar"))
                .assertFileContent("META-INF/LICENSE", containsString("Apache License"))
        }
    
        def "generated wrapper scripts for given version from command-line"() {
            when:
            run "wrapper", "--gradle-version", "2.2.1", "--no-validate-url"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	usedParams := map[schema.GroupVersionKind]struct{}{}
    	var errs []error
    	for policyKey, bindingSpecs := range policiesToBindings {
    		var inf generic.NamespacedLister[P] = s.policyInformer
    		if len(policyKey.Namespace) > 0 {
    			inf = s.policyInformer.Namespaced(policyKey.Namespace)
    		}
    		policySpec, err := inf.Get(policyKey.Name)
    		if errors.IsNotFound(err) {
    			// Policy for bindings doesn't exist. This can happen if the policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/strconv/ftoa.go

    	exp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)
    	mant := bits & (uint64(1)<<flt.mantbits - 1)
    
    	switch exp {
    	case 1<<flt.expbits - 1:
    		// Inf, NaN
    		var s string
    		switch {
    		case mant != 0:
    			s = "NaN"
    		case neg:
    			s = "-Inf"
    		default:
    			s = "+Inf"
    		}
    		return append(dst, s...)
    
    	case 0:
    		// denormalized
    		exp++
    
    	default:
    		// add implicit top bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

    import java.util.Set;
    
    import static java.util.Arrays.asList;
    
    class RuntimeShadedJarCreator {
        private static final int ADDITIONAL_PROGRESS_STEPS = 2;
        private static final String SERVICES_DIR_PREFIX = "META-INF/services/";
        private static final String CLASS_DESC = "Ljava/lang/Class;";
    
        private static final Logger LOGGER = LoggerFactory.getLogger(RuntimeShadedJarCreator.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    func validateMinCandidateNodesAbsolute(minCandidateNodesAbsolute int32, p *field.Path) *field.Error {
    	if minCandidateNodesAbsolute < 0 {
    		return field.Invalid(p, minCandidateNodesAbsolute, "not in valid range [0, inf)")
    	}
    	return nil
    }
    
    // ValidateInterPodAffinityArgs validates that InterPodAffinityArgs are correct.
    func ValidateInterPodAffinityArgs(path *field.Path, args *config.InterPodAffinityArgs) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                    component.setClassesDeployPath("/WEB-INF/classes");
                    ConventionMapping convention = ((IConventionAware) component).getConventionMapping();
                    convention.map("libDeployPath", new Callable<String>() {
                        @Override
                        public String call() throws Exception {
                            return "/WEB-INF/lib";
                        }
                    });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/go.sum

    gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
    gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M=
    gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=
    gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=
    gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top