Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for 4000A1 (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1.upperAscii() == 'ROOK TAKES 👑'",
    				"self.val1.lowerAscii() == 'rook takes 👑'",
    
    				"'%d %s %f %s %s'.format([1, 'abc', 1.0, duration('1m'), timestamp('2000-01-01T00:00:00.000Z')]) == '1 abc 1.000000 60s 2000-01-01T00:00:00Z'",
    				"'%e'.format([3.14]) == '3.140000 × 10⁰⁰'",
    				"'%o %o %o'.format([7, 8, 9]) == '7 10 11'",
    				"'%b %b %b'.format([7, 8, 9]) == '111 1000 1001'",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/conversion_test.go

    		LimitBytes:   &limitBytes,
    	}
    	expectedParameters := url.Values{
    		"container":    {"mycontainer"},
    		"follow":       {"true"},
    		"previous":     {"true"},
    		"sinceSeconds": {"1"},
    		"sinceTime":    {"2000-01-01T12:34:56Z"},
    		"timestamps":   {"true"},
    		"tailLines":    {"2"},
    		"limitBytes":   {"3"},
    	}
    
    	codec := runtime.NewParameterCodec(legacyscheme.Scheme)
    
    	// unversioned -> query params
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:15 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    	tests := []struct {
    		CaseName
    		data        string
    		errMaxDepth bool
    	}{{
    		CaseName:    Name("ArrayUnderMaxNestingDepth"),
    		data:        `{"a":` + strings.Repeat(`[`, 10000-1) + strings.Repeat(`]`, 10000-1) + `}`,
    		errMaxDepth: false,
    	}, {
    		CaseName:    Name("ArrayOverMaxNestingDepth"),
    		data:        `{"a":` + strings.Repeat(`[`, 10000) + strings.Repeat(`]`, 10000) + `}`,
    		errMaxDepth: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		map[string]string{},
    		[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    	s.assertEvent(t, s.podXdsName("pod1"), s.podXdsName("pod2"), s.svcXdsName("svc1"))
    
    	// Services should appear with workloads when we get all resources.
    	s.assertAddresses(t, "", "pod1", "pod2", "pod3", "svc1")
    
    	// Look up the resources by VIP.
    	s.assertAddresses(t, s.addrXdsName("10.0.0.1"), "pod1", "pod2", "svc1")
    
    	s.clearEvents()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%#.0g", 0 + 100000i, "(0.+1.e+05i)"},
    	{"%#.0g", 1230000 + 0i, "(1.e+06+0.i)"},
    	{"%#.4f", 1 + 1.23i, "(1.0000+1.2300i)"},
    	{"%#.4e", 123 + 1i, "(1.2300e+02+1.0000e+00i)"},
    	{"%#.4x", 123 + 1i, "(0x1.ec00p+06+0x1.0000p+00i)"},
    	{"%#.4g", 123 + 1.23i, "(123.0+1.230i)"},
    	{"%#12.5g", 0 + 100000i, "(      0.0000 +1.0000e+05i)"},
    	{"%#12.5g", 1230000 - 0i, "(  1.2300e+06     +0.0000i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage_test.go

    		newService:         makeServiceWithClusterIp("10.0.0.11", []string{"10.0.0.11"}),
    		expectedClusterIP:  "10.0.0.11",
    		expectedClusterIPs: []string{"10.0.0.11"},
    	}, {
    		name:               "update - malformed change on secondary ip",
    		oldService:         makeServiceWithClusterIp("10.0.0.10", []string{"10.0.0.10", "2000::1"}),
    		newService:         makeServiceWithClusterIp("10.0.0.11", []string{"10.0.0.11", "3000::1"}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  7. src/strconv/atof_test.go

    	{"0x1.0000011p0", "1.0000001", nil},
    	// Slightly higher, but you have to read all the way to the end.
    	{"1.000000059604644775390625" + strings.Repeat("0", 10000) + "1", "1.0000001", nil},
    	{"0x1.000001" + strings.Repeat("0", 10000) + "1p0", "1.0000001", nil},
    
    	// largest float32: (1<<128) * (1 - 2^-24)
    	{"340282346638528859811704183484516925440", "3.4028235e+38", nil},
    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/net/ip_test.go

    	af6 bool
    }{
    	{IPv4bcast, true, false},
    	{IPv4allsys, true, false},
    	{IPv4allrouter, true, false},
    	{IPv4zero, true, false},
    	{IPv4(224, 0, 0, 1), true, false},
    	{IPv4(127, 0, 0, 1), true, false},
    	{IPv4(240, 0, 0, 1), true, false},
    	{IPv6unspecified, false, true},
    	{IPv6loopback, false, true},
    	{IPv6interfacelocalallnodes, false, true},
    	{IPv6linklocalallnodes, false, true},
    	{IPv6linklocalallrouters, false, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.lowerAscii() == self.val1.lowerAscii()": 10,
    				// strings version 2
    				"'%d %s %f %s %s'.format([1, 'abc', 1.0, duration('1m'), timestamp('2000-01-01T00:00:00.000Z')]) == '1 abc 1.000000 60s 2000-01-01T00:00:00Z'": 6,
    				"'%e'.format([3.14]) == '3.140000 × 10⁰⁰'":        3,
    				"'%o %o %o'.format([7, 8, 9]) == '7 10 11'":       2,
    				"'%b %b %b'.format([7, 8, 9]) == '111 1000 1001'": 3,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    type SidIdentifierAuthority struct {
    	Value [6]byte
    }
    
    var (
    	SECURITY_NULL_SID_AUTHORITY        = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 0}}
    	SECURITY_WORLD_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 1}}
    	SECURITY_LOCAL_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 2}}
    	SECURITY_CREATOR_SID_AUTHORITY     = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 3}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top