Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 752 for addr1 (0.04 sec)

  1. src/runtime/sema.go

    	}
    	releaseSudog(s)
    }
    
    func semrelease(addr *uint32) {
    	semrelease1(addr, false, 0)
    }
    
    func semrelease1(addr *uint32, handoff bool, skipframes int) {
    	root := semtable.rootFor(addr)
    	atomic.Xadd(addr, 1)
    
    	// Easy case: no waiters?
    	// This check must happen after the xadd, to avoid a missed wakeup
    	// (see loop in semacquire).
    	if root.nwait.Load() == 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	Namlen uint16
    	Name   [256]uint8
    }
    
    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
    - 4.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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