Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 137 for 8128 (0.04 sec)

  1. pkg/proxy/apis/config/validation/validation_test.go

    		},
    		"valid 4": {
    			addresses: []string{"127.0.0.1/32", "1.2.3.0/24"},
    		},
    		"valid 5": {
    			addresses: []string{"127.0.0.1/32"},
    		},
    		"valid 6": {
    			addresses: []string{"::1/128"},
    		},
    		"valid 7": {
    			addresses: []string{"1.2.3.4/32"},
    		},
    		"valid 8": {
    			addresses: []string{"10.20.30.0/24"},
    		},
    		"valid 9": {
    			addresses: []string{"10.20.0.0/16", "100.200.0.0/16"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-AES256-GCM-SHA384

    000002d0  fb 1e b3 4a ec c1 b2 3a  b8 4e bb a1 ca 80 8e 13  |...J...:.N......|
    000002e0  f5 08 b5 9a b8 3e c4 6c  23 cf 17 a0 31 08 04 00  |.....>.l#...1...|
    000002f0  80 28 db ec 9d f9 f4 9a  06 12 8a 32 89 11 4a e5  |.(.........2..J.|
    00000300  b6 68 98 21 ec f1 75 9c  f9 28 bc b1 99 5b ec 77  |.h.!..u..(...[.w|
    00000310  37 8b 6b 05 ad b3 10 de  24 05 84 a4 16 fe 1d 84  |7.k.....$.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPKCS1v15

    00000030  cf 42 b5                                          |.B.|
    >>> Flow 5 (client to server)
    00000000  17 03 03 00 1e 00 00 00  00 00 00 00 01 53 4b a2  |.............SK.|
    00000010  e4 5f 51 70 46 3d e3 41  28 8b 82 02 e2 27 8d eb  |._QpF=.A(....'..|
    00000020  42 65 7f 15 03 03 00 1a  00 00 00 00 00 00 00 02  |Be..............|
    00000030  f3 31 ed 2c ca e5 13 e8  93 cd d7 51 4b c5 16 88  |.1.,.......QK...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. security/pkg/pki/util/generate_cert.go

    		BasicConstraintsValid: true,
    		ExtraExtensions:       exts,
    		DNSNames:              dnsNames,
    	}, nil
    }
    
    func genSerialNum() (*big.Int, error) {
    	serialNumLimit := new(big.Int).Lsh(big.NewInt(1), 128)
    	serialNum, err := rand.Int(rand.Reader, serialNumLimit)
    	if err != nil {
    		return nil, fmt.Errorf("serial number generation failure (%v)", err)
    	}
    	return serialNum, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/policy_test.go

    			127: {CoreID: 20, SocketID: 2, NUMANodeID: 2},
    			247: {CoreID: 20, SocketID: 2, NUMANodeID: 2},
    			68:  {CoreID: 21, SocketID: 2, NUMANodeID: 2},
    			188: {CoreID: 21, SocketID: 2, NUMANodeID: 2},
    			128: {CoreID: 21, SocketID: 2, NUMANodeID: 2},
    			248: {CoreID: 21, SocketID: 2, NUMANodeID: 2},
    			75:  {CoreID: 28, SocketID: 2, NUMANodeID: 2},
    			195: {CoreID: 28, SocketID: 2, NUMANodeID: 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 20:49:58 UTC 2021
    - 40.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	jamoLBase1 = 0x84
    	jamoLEnd   = 0x1113
    	jamoVBase  = 0x1161
    	jamoVEnd   = 0x1176
    	jamoTBase  = 0x11A7
    	jamoTEnd   = 0x11C3
    
    	jamoTCount   = 28
    	jamoVCount   = 21
    	jamoVTCount  = 21 * 28
    	jamoLVTCount = 19 * 21 * 28
    )
    
    const hangulUTF8Size = 3
    
    func isHangul(b []byte) bool {
    	if len(b) < hangulUTF8Size {
    		return false
    	}
    	b0 := b[0]
    	if b0 < hangulBase0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/callback.go

    func stack812()  { var buf [812]byte; use(buf[:]); C.callGoStackCheck() }
    func stack816()  { var buf [816]byte; use(buf[:]); C.callGoStackCheck() }
    func stack820()  { var buf [820]byte; use(buf[:]); C.callGoStackCheck() }
    func stack824()  { var buf [824]byte; use(buf[:]); C.callGoStackCheck() }
    func stack828()  { var buf [828]byte; use(buf[:]); C.callGoStackCheck() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  8. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

             <match value="\n@article{" type="stringignorecase" offset="2:128"/>
             <match value="\n@book{" type="stringignorecase" offset="2:128"/>
             <match value="\n@inbook{" type="stringignorecase" offset="2:128"/>
             <match value="\n@incollection{" type="stringignorecase" offset="2:128"/>
             <match value="\n@inproceedings{" type="stringignorecase" offset="2:128"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  9. src/net/netip/netip_test.go

    			bits: 0,
    		},
    		{
    			name: "IPv6 /128",
    			ip:   mustIP("2001:db8::1"),
    			bits: 128,
    		},
    		{
    			name: "IPv6 /65",
    			ip:   mustIP("2001:db8::1"),
    			bits: 65,
    		},
    		{
    			name: "IPv6 /0",
    			ip:   mustIP("2001:db8::1"),
    			bits: 0,
    		},
    		{
    			name: "IPv6 zone /128",
    			ip:   mustIP("2001:db8::1%eth0"),
    			bits: 128,
    		},
    		{
    			name: "IPv6 zone /65",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/composition.go

    	jamoLBase1 = 0x84
    	jamoLEnd   = 0x1113
    	jamoVBase  = 0x1161
    	jamoVEnd   = 0x1176
    	jamoTBase  = 0x11A7
    	jamoTEnd   = 0x11C3
    
    	jamoTCount   = 28
    	jamoVCount   = 21
    	jamoVTCount  = 21 * 28
    	jamoLVTCount = 19 * 21 * 28
    )
    
    const hangulUTF8Size = 3
    
    func isHangul(b []byte) bool {
    	if len(b) < hangulUTF8Size {
    		return false
    	}
    	b0 := b[0]
    	if b0 < hangulBase0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
Back to top