Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ipAddrs (0.08 sec)

  1. src/net/dnsclient_unix_test.go

    			default:
    				panic("unknown dnsmessage type")
    			}
    
    			return r, nil
    		},
    	}
    
    	r := &Resolver{PreferGo: true, Dial: fake.DialContext}
    
    	methodTests := []string{"CNAME", "Host", "IP", "IPAddr", "MX", "NS", "NetIP", "SRV", "TXT"}
    	query := func(t string, req string) error {
    		switch t {
    		case "CNAME":
    			_, err := r.LookupCNAME(context.Background(), req)
    			return err
    		case "Host":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    		return base, offset
    	}
    	p1, off1 := baseAndOffset(p1)
    	p2, off2 := baseAndOffset(p2)
    	if isSamePtr(p1, p2) {
    		return !overlap(off1, n1, off2, n2)
    	}
    	// p1 and p2 are not the same, so if they are both OpAddrs then
    	// they point to different variables.
    	// If one pointer is on the stack and the other is an argument
    	// then they can't overlap.
    	switch p1.Op {
    	case OpAddr, OpLocalAddr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top