Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 4000A1 (0.09 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. 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)
  3. 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)
  4. 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)
  5. 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