Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for Nname (0.84 sec)

  1. istioctl/pkg/validate/validate.go

    		// Display warnings we encountered as well
    		for _, fname := range filenames {
    			if w := warningsByFilename[fname]; w != nil {
    				if fname == "-" {
    					_, _ = fmt.Fprint(writer, warningToString(w))
    					break
    				}
    				_, _ = fmt.Fprintf(writer, "%q has warnings: %v\n", fname, warningToString(w))
    			}
    		}
    		return errs
    	}
    	for _, fname := range filenames {
    		if fname == "-" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/net/lookup.go

    func (r *Resolver) LookupSRV(ctx context.Context, service, proto, name string) (string, []*SRV, error) {
    	cname, addrs, err := r.lookupSRV(ctx, service, proto, name)
    	if err != nil {
    		return "", nil, err
    	}
    	if cname != "" && !isDomainName(cname) {
    		return "", nil, &DNSError{Err: "SRV header name is invalid", Name: name}
    	}
    	filteredAddrs := make([]*SRV, 0, len(addrs))
    	for _, addr := range addrs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    			if !interestingToCompare(dentry.fname) {
    				continue
    			}
    			if eidx >= len(eentries) {
    				t.Errorf("testcase %s missing expected entry for %s, skipping", tc, dentry.fname)
    				continue
    			}
    			eentry := eentries[eidx]
    			ecst := ecsites[eidx]
    			eidx++
    			if dentry.fname != eentry.fname {
    				t.Errorf("got fn %q wanted %q, skipping checks",
    					dentry.fname, eentry.fname)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix.go

    // see golang.org/issue/16739.
    func avoidDNS(name string) bool {
    	if name == "" {
    		return true
    	}
    	if name[len(name)-1] == '.' {
    		name = name[:len(name)-1]
    	}
    	return stringsHasSuffixFold(name, ".onion")
    }
    
    // nameList returns a list of names for sequential DNS queries.
    func (conf *dnsConfig) nameList(name string) []string {
    	// Check name length (see isDomainName).
    	l := len(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. pkg/dns/client/dns_test.go

    		},
    		{
    			name:     "success: alt host - name",
    			host:     "svc-with-alt.",
    			expected: a("svc-with-alt.", []netip.Addr{netip.MustParseAddr("15.15.15.15")}),
    		},
    		{
    			name:     "success: alt host - name.namespace",
    			host:     "svc-with-alt.ns1.",
    			expected: a("svc-with-alt.ns1.", []netip.Addr{netip.MustParseAddr("15.15.15.15")}),
    		},
    		{
    			name:     "success: alt host - name.namespace.svc",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/inl_test.go

    		"compress/flate.byLiteral.Swap": true,
    	}
    
    	notInlinedReason := make(map[string]string)
    	pkgs := make([]string, 0, len(want))
    	for pname, fnames := range want {
    		pkgs = append(pkgs, pname)
    		for _, fname := range fnames {
    			fullName := pname + "." + fname
    			if _, ok := notInlinedReason[fullName]; ok {
    				t.Errorf("duplicate func: %s", fullName)
    			}
    			notInlinedReason[fullName] = "unknown reason"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/net/lookup_windows.go

    		}
    		if p.Type != dnstype {
    			continue
    		}
    		if !syscall.DnsNameCompare(cname, p.Name) {
    			continue
    		}
    		rec = append(rec, p)
    	}
    	return rec
    }
    
    // returns the last CNAME in chain.
    func resolveCNAME(name *uint16, r *syscall.DNSRecord) *uint16 {
    	// limit cname resolving to 10 in case of an infinite CNAME loop
    Cname:
    	for cnameloop := 0; cnameloop < 10; cnameloop++ {
    		for p := r; p != nil; p = p.Next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. pkg/dns/client/dns.go

    	// Odds are, the first query will always be an expanded hostname
    	// (productpage.ns1.svc.cluster.local.ns1.svc.cluster.local)
    	// So lookup the cname table first
    	for _, cn := range table.cname[hostname] {
    		// this was a cname match
    		copied := dns.Copy(cn).(*dns.CNAME)
    		copied.Header().Name = question
    		cnAnswers = append(cnAnswers, copied)
    		hostname = copied.Target
    	}
    
    	switch qtype {
    	case dns.TypeA:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. pkg/test/kube/dump.go

    						c.Name(), pod.Namespace, pod.Name, container.Name, restarts, prow.ArtifactsURL(fname))
    				}
    				l, err := c.PodLogs(context.TODO(), pod.Name, pod.Namespace, container.Name, true /* previousLog */)
    				if err != nil {
    					scopes.Framework.Warnf("Unable to get previous logs for cluster/pod/container: %s/%s/%s/%s: %v",
    						c.Name(), pod.Namespace, pod.Name, container.Name, err)
    				}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/emitter.go

    		return
    	}
    	cname := ""
    	e.OptionalEvent(&format.Event{
    		Name:     i.Name,
    		Category: i.Category,
    		Phase:    "I",
    		Scope:    "t",
    		Time:     viewerTime(i.Ts),
    		PID:      format.ProcsSection,
    		TID:      i.Resource,
    		Stack:    i.Stack,
    		Cname:    cname,
    		Arg:      i.Arg,
    	})
    }
    
    type InstantEvent struct {
    	Ts       time.Duration
    	Name     string
    	Category string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top