Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 911 for addr1 (0.04 sec)

  1. src/net/dnsclient_unix.go

    			addr := IPAddr{IP: ip, Zone: zone}
    			addrs = append(addrs, addr)
    		}
    	}
    	sortByRFC6724(addrs)
    	return addrs, canonical
    }
    
    // goLookupIP is the native Go implementation of LookupIP.
    // The libc versions are in cgo_*.go.
    func (r *Resolver) goLookupIP(ctx context.Context, network, host string, order hostLookupOrder, conf *dnsConfig) (addrs []IPAddr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. src/net/ipsock.go

    		want6 = bytealg.CountString(addr, '[') > 0
    	}
    	if want6 {
    		return addrs.first(isNotIPv4)
    	}
    	return addrs.first(isIPv4)
    }
    
    // first returns the first address which satisfies strategy, or if
    // none do, then the first address of any kind.
    func (addrs addrList) first(strategy func(Addr) bool) Addr {
    	for _, addr := range addrs {
    		if strategy(addr) {
    			return addr
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/listener.go

    	}
    
    	return ""
    }
    
    func retrieveListenerAdditionalAddresses(l *listener.Listener) []string {
    	var addrs []string
    	socketAddresses := l.GetAdditionalAddresses()
    	for _, socketAddr := range socketAddresses {
    		addr := socketAddr.Address
    		addrs = append(addrs, addr.GetSocketAddress().Address)
    	}
    
    	return addrs
    }
    
    func retrieveListenerPort(l *listener.Listener) uint32 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. pkg/controlplane/reconcilers/instancecount.go

    		// become eventually correct.
    		if addrs := &e.Subsets[0].Addresses; len(*addrs) > r.masterCount {
    			// addrs is a pointer because we're going to mutate it.
    			for i, addr := range *addrs {
    				if addr.IP == ip.String() {
    					for len(*addrs) > r.masterCount {
    						// wrap around if necessary.
    						remove := (i + 1) % len(*addrs)
    						*addrs = append((*addrs)[:remove], (*addrs)[remove+1:]...)
    					}
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  5. pilot/pkg/util/network/ip.go

    	defer cancel()
    	var addrs []netip.Addr
    	var lookupErr error
    	if (len(lookupIPAddr) > 0) && (lookupIPAddr[0] != nil) {
    		// if there are more than one lookup function, ignore all but first
    		addrs, lookupErr = lookupIPAddr[0](ctx, host)
    	} else {
    		addrs, lookupErr = net.DefaultResolver.LookupNetIP(ctx, "ip", host)
    	}
    	if lookupErr != nil || len(addrs) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/util.go

    		} else {
    			addrs = append(addrs, net.JoinHostPort(ingr.Hostname, strconv.Itoa(port)))
    		}
    	}
    	return addrs, true, nil
    }
    
    func removeCRDsSlice(raw []string) string {
    	res := make([]string, 0)
    	for _, r := range raw {
    		res = append(res, removeCRDs(r))
    	}
    	return yml.JoinString(res...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	_      [4]byte
    }
    
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/net/lookup_windows.go

    		}
    		defer syscall.FreeAddrInfoW(result)
    		addrs := make([]IPAddr, 0, 5)
    		for ; result != nil; result = result.Next {
    			addr := unsafe.Pointer(result.Addr)
    			switch result.Family {
    			case syscall.AF_INET:
    				a := (*syscall.RawSockaddrInet4)(addr).Addr
    				addrs = append(addrs, IPAddr{IP: copyIP(a[:])})
    			case syscall.AF_INET6:
    				a := (*syscall.RawSockaddrInet6)(addr).Addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/runtime/sys_freebsd_riscv64.s

    #define SYS_pipe2 		542
    #define SYS_kevent		560
    
    TEXT emptyfunc<>(SB),0,$0-0
    	RET
    
    // func sys_umtx_op(addr *uint32, mode int32, val uint32, uaddr1 uintptr, ut *umtx_time) int32
    TEXT runtime·sys_umtx_op(SB),NOSPLIT,$0
    	MOV	addr+0(FP), A0
    	MOVW	mode+8(FP), A1
    	MOVW	val+12(FP), A2
    	MOV	uaddr1+16(FP), A3
    	MOV	ut+24(FP), A4
    	MOV	$SYS__umtx_op, T0
    	ECALL
    	BEQ	T0, ZERO, ok
    	NEG	A0, A0
    ok:
    	MOVW	A0, ret+32(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

      %graph:2 = tf_executor.graph {
        %island:3 = tf_executor.island {
          %add1 = "tf.Add"(%arg0, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
          %add2 = "tf.Add"(%add1, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
          tf_executor.yield %add1, %add2 : tensor<*xi32>, tensor<*xi32>
        }
        tf_executor.fetch %island#0, %island#1 : tensor<*xi32>, tensor<*xi32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
Back to top