Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 556 for familyOf (0.14 sec)

  1. src/syscall/ztypes_linux_mips64le.go

    	Pad_cgo_1 [4]byte
    }
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Family uint16
    	Path   [108]int8
    }
    
    type RawSockaddrLinklayer struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. src/net/sockopt_bsd.go

    	"runtime"
    	"syscall"
    )
    
    func setDefaultSockopts(s, family, sotype int, ipv6only bool) error {
    	if runtime.GOOS == "dragonfly" && sotype != syscall.SOCK_RAW {
    		// On DragonFly BSD, we adjust the ephemeral port
    		// range because unlike other BSD systems its default
    		// port range doesn't conform to IANA recommendation
    		// as described in RFC 6056 and is pretty narrow.
    		switch family {
    		case syscall.AF_INET:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/lif/zsys_solaris_amd64.go

    	sizeofLifconf      = 0x18
    	sizeofLifIfinfoReq = 0x10
    )
    
    type lifnum struct {
    	Family    uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Count     int32
    }
    
    type lifreq struct {
    	Name   [32]int8
    	Lifru1 [4]byte
    	Type   uint32
    	Lifru  [336]byte
    }
    
    type lifconf struct {
    	Family    uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Len       int32
    	Pad_cgo_1 [4]byte
    	Lifcu     [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 981 bytes
    - Viewed (0)
  4. src/syscall/netlink_linux.go

    	b[16] = rr.Data.Family
    	return b
    }
    
    func newNetlinkRouteRequest(proto, seq, family int) []byte {
    	rr := &NetlinkRouteRequest{}
    	rr.Header.Len = uint32(NLMSG_HDRLEN + SizeofRtGenmsg)
    	rr.Header.Type = uint16(proto)
    	rr.Header.Flags = NLM_F_DUMP | NLM_F_REQUEST
    	rr.Header.Seq = uint32(seq)
    	rr.Data.Family = uint8(family)
    	return rr.toWireFormat()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. docs/en/docs/img/deployment/https/https.drawio

                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 25.7K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https06.drawio

                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. src/net/sockopt_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"os"
    	"syscall"
    )
    
    func setDefaultSockopts(s, family, sotype int, ipv6only bool) error {
    	if family == syscall.AF_INET6 && sotype != syscall.SOCK_RAW {
    		// Allow both IP versions even if the OS default
    		// is otherwise. Note that some operating systems
    		// never admit this option.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 00:33:27 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_ppc64le.go

    	Pad_cgo_1 [4]byte
    }
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Family uint16
    	Path   [108]int8
    }
    
    type RawSockaddrLinklayer struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/route/address.go

    type Addr interface {
    	// Family returns an address family.
    	Family() int
    }
    
    // A LinkAddr represents a link-layer address.
    type LinkAddr struct {
    	Index int    // interface index when attached
    	Name  string // interface name when attached
    	Addr  []byte // link-layer address when attached
    }
    
    // Family implements the Family method of Addr interface.
    func (a *LinkAddr) Family() int { return syscall.AF_LINK }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/cpp/AbstractCppComponentIntegrationTest.groovy

        }
    
        def "assemble task warns when current operating system family is excluded"() {
            given:
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
            expect:
            succeeds taskNameToAssembleDevelopmentBinary
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top