Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for uimm16 (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	NetSetupWorkgroupName
    	NetSetupDomainName
    )
    
    type UserInfo10 struct {
    	Name       *uint16
    	Comment    *uint16
    	UsrComment *uint16
    	FullName   *uint16
    }
    
    //sys	NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo
    //sys	NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) = netapi32.NetGetJoinInformation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    		return false
    	}
    	casLength := uint16(data[0])<<8 | uint16(data[1])
    	data = data[2:]
    	if len(data) < int(casLength) {
    		return false
    	}
    	cas := make([]byte, casLength)
    	copy(cas, data)
    	data = data[casLength:]
    
    	m.certificateAuthorities = nil
    	for len(cas) > 0 {
    		if len(cas) < 2 {
    			return false
    		}
    		caLen := uint16(cas[0])<<8 | uint16(cas[1])
    		cas = cas[2:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	tests := []struct {
    		name            string
    		clientCiphers   []uint16
    		serverHasAESGCM bool
    		serverCiphers   []uint16
    		expectedCipher  uint16
    	}{
    		{
    			name: "server has hardware AES, client doesn't (pick ChaCha)",
    			clientCiphers: []uint16{
    				TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    				TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	extensionPreSharedKey            uint16 = 41
    	extensionEarlyData               uint16 = 42
    	extensionSupportedVersions       uint16 = 43
    	extensionCookie                  uint16 = 44
    	extensionPSKModes                uint16 = 45
    	extensionCertificateAuthorities  uint16 = 47
    	extensionSignatureAlgorithmsCert uint16 = 50
    	extensionKeyShare                uint16 = 51
    	extensionQUICTransportParameters uint16 = 57
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    			CipherSuites:      []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    			SignatureSchemes:  []SignatureScheme{PKCS1WithSHA1},
    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    		}, "signature algorithms"},
    		{rsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    			SignatureSchemes:  []SignatureScheme{PKCS1WithSHA1},
    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    	ip               string
    	hnsID            string
    	healthCheckHnsID string
    }
    
    type loadBalancerInfo struct {
    	hnsID string
    }
    
    type loadBalancerIdentifier struct {
    	protocol      uint16
    	internalPort  uint16
    	externalPort  uint16
    	vip           string
    	endpointsHash [20]byte
    }
    
    type loadBalancerFlags struct {
    	isILB           bool
    	isDSR           bool
    	isVipExternalIP bool
    	localRoutedVIP  bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

    	case sys.MIPS, sys.MIPS64:
    		eh.Machine = uint16(elf.EM_MIPS)
    	case sys.Loong64:
    		eh.Machine = uint16(elf.EM_LOONGARCH)
    	case sys.ARM:
    		eh.Machine = uint16(elf.EM_ARM)
    	case sys.AMD64:
    		eh.Machine = uint16(elf.EM_X86_64)
    	case sys.ARM64:
    		eh.Machine = uint16(elf.EM_AARCH64)
    	case sys.I386:
    		eh.Machine = uint16(elf.EM_386)
    	case sys.PPC64:
    		eh.Machine = uint16(elf.EM_PPC64)
    	case sys.RISCV64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    		name    string
    		ciphers []uint16
    	}{
    		{
    			name:    "nil",
    			ciphers: nil,
    		},
    		{
    			name:    "empty",
    			ciphers: []uint16{},
    		},
    		{
    			name:    "some TLS 1.2 cipher",
    			ciphers: []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
    		},
    		{
    			name:    "some TLS 1.3 cipher",
    			ciphers: []uint16{TLS_AES_128_GCM_SHA256},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	remote        [28]byte // union of sockaddr4 and sockaddr6
    	_             uint16
    	_             uint16
    	asid          uint16
    	_             [2]byte
    	tnLuName      [8]byte
    	tnMonGrp      uint32
    	tnAppl        [8]byte
    	applData      [40]byte
    	nInterface    [16]byte
    	dVipa         [16]byte
    	dVipaPfx      uint16
    	dVipaPort     uint16
    	dVipaFamily   byte
    	_             [3]byte
    	destXCF       [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. src/encoding/json/decode_test.go

    			}
    		})
    	}
    }
    
    type All struct {
    	Bool    bool
    	Int     int
    	Int8    int8
    	Int16   int16
    	Int32   int32
    	Int64   int64
    	Uint    uint
    	Uint8   uint8
    	Uint16  uint16
    	Uint32  uint32
    	Uint64  uint64
    	Uintptr uintptr
    	Float32 float32
    	Float64 float64
    
    	Foo  string `json:"bar"`
    	Foo2 string `json:"bar2,dummyopt"`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top