Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for uimm16 (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/test/testdata/zero_test.go

    	if a != want {
    		t.Errorf("zero1025 got=%v, want %v\n", a, want)
    	}
    }
    
    type Z8u1 struct {
    	b   bool
    	val [8]byte
    }
    type Z8u2 struct {
    	i   uint16
    	val [8]byte
    }
    
    //go:noinline
    func zero8u1_ssa(t *Z8u1) {
    	t.val = [8]byte{}
    }
    
    //go:noinline
    func zero8u2_ssa(t *Z8u2) {
    	t.val = [8]byte{}
    }
    func testZero8u(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/ssa/rewritedec64.go

    	for {
    		x := v_0
    		s := v_1
    		v.reset(OpInt64Make)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/link/internal/ld/xcoff.go

    )
    
    // File Header
    type XcoffFileHdr64 struct {
    	Fmagic   uint16 // Target machine
    	Fnscns   uint16 // Number of sections
    	Ftimedat int32  // Time and date of file creation
    	Fsymptr  uint64 // Byte offset to symbol table start
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    	Fnsyms   int32  // Number of entries in symbol table
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    // SockaddrLinklayer implements the Sockaddr interface for AF_PACKET type sockets.
    type SockaddrLinklayer struct {
    	Protocol uint16
    	Ifindex  int
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]byte
    	raw      RawSockaddrLinklayer
    }
    
    func (sa *SockaddrLinklayer) sockaddr() (unsafe.Pointer, _Socklen, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top