Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for lookupName (0.33 sec)

  1. schema/relationship.go

    		for _, primaryField := range primaryFields {
    			lookUpName := primarySchemaName + primaryField.Name
    			if gl == guessBelongs {
    				lookUpName = field.Name + primaryField.Name
    			}
    
    			lookUpNames := []string{lookUpName}
    			if len(primaryFields) == 1 {
    				lookUpNames = append(lookUpNames, strings.TrimSuffix(lookUpName, primaryField.Name)+"ID",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    		},
    		{
    			name:       "node does not exist",
    			lookupName: "whale",
    			success:    false,
    		},
    		{
    			name:       "node not labelled yet",
    			lookupName: "robin",
    			node: v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "robin",
    				},
    			},
    			success: false,
    		},
    		{
    			name:       "patch node when timeout",
    			lookupName: "testnode",
    			node: v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. src/net/cgo_unix.go

    // blocking might not be executed when the context gets canceled early.
    func doBlockingWithCtx[T any](ctx context.Context, lookupName string, blocking func() (T, error)) (T, error) {
    	if err := acquireThread(ctx); err != nil {
    		var zero T
    		return zero, &DNSError{
    			Name:      lookupName,
    			Err:       mapErr(err).Error(),
    			IsTimeout: err == context.DeadlineExceeded,
    		}
    	}
    
    	if ctx.Done() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/time/zoneinfo.go

    			d++
    		}
    		s = d * secondsPerDay
    	}
    
    	return s + r.time - off
    }
    
    // lookupName returns information about the time zone with
    // the given name (such as "EST") at the given pseudo-Unix time
    // (what the given time of day would be in UTC).
    func (l *Location) lookupName(name string, unix int64) (offset int, ok bool) {
    	l = l.get()
    
    	// First try for a zone with the right name that was actually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/methodsetcache.go

    	}
    	cache.mu.Lock()
    	defer cache.mu.Unlock()
    
    	switch T := aliases.Unalias(T).(type) {
    	case *types.Named:
    		return cache.lookupNamed(T).value
    
    	case *types.Pointer:
    		if N, ok := aliases.Unalias(T.Elem()).(*types.Named); ok {
    			return cache.lookupNamed(N).pointer
    		}
    	}
    
    	// all other types
    	// (The map uses pointer equivalence, not type identity.)
    	mset := cache.others[T]
    	if mset == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 18:08:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/net/lookup.go

    // formatted presentation-format domain name.
    //
    // LookupCNAME uses [context.Background] internally; to specify the context, use
    // [Resolver.LookupCNAME].
    func LookupCNAME(host string) (cname string, err error) {
    	return DefaultResolver.LookupCNAME(context.Background(), host)
    }
    
    // LookupCNAME returns the canonical name for the given host.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. src/net/lookup_test.go

    				break
    			}
    		}
    	}
    
    	cname, err := LookupCNAME("www.mit.edu")
    	if err != nil {
    		t.Errorf("LookupCNAME(www.mit.edu, mode=%v): %v", mode, err)
    	} else if !strings.HasSuffix(cname, ".") {
    		t.Errorf("LookupCNAME(www.mit.edu) = %v, want cname ending in . with trailing dot (mode=%v)", cname, mode)
    	}
    
    	mxs, err := LookupMX("google.com")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. src/net/lookup_plan9.go

    		s = s[i+1:] // remove address
    	}
    	if n, _, ok := dtoi(s); ok {
    		return n, nil
    	}
    	return 0, &DNSError{Err: "unknown port", Name: errNetwork + "/" + service, IsNotFound: true}
    }
    
    func (r *Resolver) lookupCNAME(ctx context.Context, name string) (cname string, err error) {
    	if order, conf := systemConf().hostLookupOrder(r, name); order != hostLookupCgo {
    		return r.goLookupCNAME(ctx, name, order, conf)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/net/lookup_windows_test.go

    		}
    	})
    }
    
    func TestNSLookupCNAME(t *testing.T) {
    	testenv.MustHaveExternalNetwork(t)
    
    	testLookup(t, func(t *testing.T, r *Resolver, server string) {
    		cname, err := r.LookupCNAME(context.Background(), server)
    		if err != nil {
    			t.Fatalf("failed %s: %s", server, err)
    		}
    		if cname == "" {
    			t.Fatalf("no result %s", server)
    		}
    		expected, err := nslookupCNAME(server)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top