Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lookupName (0.11 sec)

  1. src/time/format.go

    	if zoneName != "" {
    		t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
    		// Look for local zone with the given offset.
    		// If that zone was in effect at the given time, use it.
    		offset, ok := local.lookupName(zoneName, t.unixSec())
    		if ok {
    			t.addSec(-int64(offset))
    			t.setLoc(local)
    			return t, nil
    		}
    
    		// Otherwise, create fake zone with unknown offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    			f: func(t *testing.T) {
    				expectedErr := &DNSError{Err: errMalformedDNSRecordsDetail, Name: "golang.org"}
    				_, err := r.LookupCNAME(context.Background(), "golang.org")
    				if err.Error() != expectedErr.Error() {
    					t.Fatalf("unexpected error: %s", err)
    				}
    				_, err = LookupCNAME("golang.org")
    				if err.Error() != expectedErr.Error() {
    					t.Fatalf("unexpected error: %s", err)
    				}
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top