Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 556 for familyOf (0.21 sec)

  1. src/net/cgo_sockold.go

    func cgoSockaddrInet4(ip IP) *C.struct_sockaddr {
    	sa := syscall.RawSockaddrInet4{Len: syscall.SizeofSockaddrInet4, Family: syscall.AF_INET}
    	copy(sa.Addr[:], ip)
    	return (*C.struct_sockaddr)(unsafe.Pointer(&sa))
    }
    
    func cgoSockaddrInet6(ip IP, zone int) *C.struct_sockaddr {
    	sa := syscall.RawSockaddrInet6{Len: syscall.SizeofSockaddrInet6, Family: syscall.AF_INET6, Scope_id: uint32(zone)}
    	copy(sa.Addr[:], ip)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 14:05:39 UTC 2022
    - 842 bytes
    - Viewed (0)
  2. docs/en/docs/img/deployment/https/https04.drawio

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

    const defaultBuffer = 65535
    
    type fakeSockAddr struct {
    	family  int
    	address string
    }
    
    func fakeAddr(sa sockaddr) fakeSockAddr {
    	return fakeSockAddr{
    		family:  sa.family(),
    		address: sa.String(),
    	}
    }
    
    // socket returns a network file descriptor that is ready for
    // I/O using the fake network.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/controller/repairip.go

    func newIPAddress(name string, svc *v1.Service) *networkingv1alpha1.IPAddress {
    	family := string(v1.IPv4Protocol)
    	if netutils.IsIPv6String(name) {
    		family = string(v1.IPv6Protocol)
    	}
    	return &networkingv1alpha1.IPAddress{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    			Labels: map[string]string{
    				networkingv1alpha1.LabelIPAddressFamily: family,
    				networkingv1alpha1.LabelManagedBy:       ipallocator.ControllerName,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. src/net/cgo_unix_syscall.go

    func cgoSockaddrInet4(ip IP) *syscall.RawSockaddr {
    	sa := syscall.RawSockaddrInet4{Len: syscall.SizeofSockaddrInet4, Family: syscall.AF_INET}
    	copy(sa.Addr[:], ip)
    	return (*syscall.RawSockaddr)(unsafe.Pointer(&sa))
    }
    
    func cgoSockaddrInet6(ip IP, zone int) *syscall.RawSockaddr {
    	sa := syscall.RawSockaddrInet6{Len: syscall.SizeofSockaddrInet6, Family: syscall.AF_INET6, Scope_id: uint32(zone)}
    	copy(sa.Addr[:], ip)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    type RawSockaddrInet6 struct {
    	Len      uint8
    	Family   uint8
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    	Path   [1023]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1alpha1/well_known_labels.go

    	// the name at create time and immutable.
    	// LabelIPAddressFamily is used to indicate the IP family of a Kubernetes IPAddress.
    	// This label simplify dual-stack client operations allowing to obtain the list of
    	// IP addresses filtered by family.
    	LabelIPAddressFamily = "ipaddress.kubernetes.io/ip-family"
    	// LabelManagedBy is used to indicate the controller or entity that manages
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:56:44 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/proxy/serviceport.go

    		if ing.IP == "" {
    			continue
    		}
    
    		// proxy mode load balancers do not need to track the IPs in the service cache
    		// and they can also implement IP family translation, so no need to check if
    		// the status ingress.IP and the ClusterIP belong to the same family.
    		if !proxyutil.IsVIPMode(ing) {
    			klog.V(4).InfoS("Service change tracker ignored the following load balancer ingress IP for given Service as it using Proxy mode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_amd64.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
    - 12K bytes
    - Viewed (0)
  10. src/syscall/ztypes_openbsd_386.go

    )
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]int8
    }
    
    type RawSockaddrInet6 struct {
    	Len      uint8
    	Family   uint8
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    	Path   [104]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.7K bytes
    - Viewed (0)
Back to top