Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 184 for 1e23 (0.05 sec)

  1. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template:     testClaimTemplate("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/config/visibility/visibility.go

    		return nil
    	case None:
    		return fmt.Errorf("exportTo ~ (none) is not allowed for Istio configuration objects")
    	default:
    		if !labels.IsDNS1123Label(string(v)) {
    			return fmt.Errorf("only .,*, or a valid DNS 1123 label is allowed as exportTo entry")
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 09 07:58:12 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. src/math/ldexp.go

    		return frac
    	}
    	frac, e := normalize(frac)
    	exp += e
    	x := Float64bits(frac)
    	exp += int(x>>shift)&mask - bias
    	if exp < -1075 {
    		return Copysign(0, frac) // underflow
    	}
    	if exp > 1023 { // overflow
    		if frac < 0 {
    			return Inf(-1)
    		}
    		return Inf(1)
    	}
    	var m float64 = 1
    	if exp < -1022 { // denormal
    		exp += 53
    		m = 1.0 / (1 << 53) // 2**-53
    	}
    	x &^= mask << shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/version_test.go

    		{"release/v1.8.0", "v1.8.0", true},
    		{"1.4.0-beta.0", "v1.4.0-beta.0", true},
    		{"release/0invalid", "", false},
    		// CI or custom builds
    		{"ci/v1.9.0-alpha.1.123+acbcbfd53bfa0a", "v1.9.0-alpha.1.123+acbcbfd53bfa0a", true},
    		{"ci/1.9.0-alpha.1.123+acbcbfd53bfa0a", "v1.9.0-alpha.1.123+acbcbfd53bfa0a", true},
    		{"ci/0invalid", "", false},
    		{"0invalid", "", false},
    	}
    
    	for _, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. pkg/config/labels/instance.go

    }
    
    // IsDNS1123Label tests for a string that conforms to the definition of a label in
    // DNS (RFC 1123).
    func IsDNS1123Label(value string) bool {
    	return len(value) <= DNS1123LabelMaxLength && dns1123LabelRegexp.MatchString(value)
    }
    
    // IsWildcardDNS1123Label tests for a string that conforms to the definition of a label in DNS (RFC 1123), but allows
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    		},
    		"bad-namespace": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("metadata", "namespace"), badName, "a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name',  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')")},
    			parameters:   testResourceClaimParameters(goodName, badName, goodRequests),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionSelectorSchemeTest.groovy

            where:
            selector << [
                "1+",
                "1.2.3+"
            ]
        }
    
        def "creates latest version selector"() {
            expect:
            matcher.parseSelector(selector) instanceof LatestVersionSelector
    
            where:
            selector << [
                "latest.integration",
                "latest.foo",
                "latest.123"
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			claim:        testClaim("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    	}, {
    		name:       "name should not include scheme",
    		targetName: "http://foo.k8s.io",
    		err:        "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters",
    	}, {
    		name:       "email should be invalid",
    		targetName: "******@****.***",
    		err:        "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters",
    	}, {
    		name:       "name cannot be empty",
    		targetName: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/util_test.go

    			input:        nil,
    			replace:      nil,
    			insertBefore: nil,
    			insertAfter:  nil,
    			applied:      false,
    		},
    		{
    			name:         "the first",
    			input:        []int{1, 2, 3},
    			replace:      []int{10, 2, 3},
    			insertBefore: []int{10, 1, 2, 3},
    			insertAfter:  []int{1, 10, 2, 3},
    			applied:      true,
    		},
    		{
    			name:         "the middle",
    			input:        []int{0, 1, 2, 3},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top