Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 4000A1 (0.1 sec)

  1. src/time/time_test.go

    		{`[]`, "Time.UnmarshalJSON: input is not a JSON string"},
    		{`"2000-01-01T1:12:34Z"`, `<nil>`},
    		{`"2000-01-01T00:00:00,000Z"`, `<nil>`},
    		{`"2000-01-01T00:00:00+24:00"`, `<nil>`},
    		{`"2000-01-01T00:00:00+00:60"`, `<nil>`},
    		{`"2000-01-01T00:00:00+123:45"`, `parsing time "2000-01-01T00:00:00+123:45" as "2006-01-02T15:04:05Z07:00": cannot parse "+123:45" as "Z07:00"`},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        val url =
          HttpUrl.Builder()
            .scheme("http")
            .username("a:\u0001@/\\?#%b")
            .password("c:\u0001@/\\?#%d")
            .host("ef")
            .port(8080)
            .addPathSegment("g:\u0001@/\\?#%h")
            .query("i:\u0001@/\\?#%j")
            .fragment("k:\u0001@/\\?#%l")
            .build()
        assertThat(url.toString())
          .isEqualTo(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K 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. 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)
  7. 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)
  8. src/net/netip/netip_test.go

    			}
    		})
    	}
    }
    
    func TestAddrFromSlice(t *testing.T) {
    	tests := []struct {
    		ip       []byte
    		wantAddr Addr
    		wantOK   bool
    	}{
    		{
    			ip:       []byte{10, 0, 0, 1},
    			wantAddr: mustIP("10.0.0.1"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0xfe, 0x80, 15: 0x01},
    			wantAddr: mustIP("fe80::01"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0, 1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top