Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 309 for Nname (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/net/cgo_unix_cgo_res.go

    	return nil
    }
    
    func _C_res_nclose(state *_C_struct___res_state) {
    	return
    }
    
    func _C_res_nsearch(state *_C_struct___res_state, dname *_C_char, class, typ int, ans *_C_uchar, anslen int) int {
    	x := C.res_search(dname, C.int(class), C.int(typ), ans, C.int(anslen))
    	return int(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 892 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/pgo_inl_test.go

    			curPkg = splits[0]
    			continue
    		}
    		if m := haveInlined.FindStringSubmatch(line); m != nil {
    			fname := m[1]
    			delete(notInlinedReason, curPkg+"."+fname)
    			continue
    		}
    		if m := canInline.FindStringSubmatch(line); m != nil {
    			fname := m[1]
    			fullname := curPkg + "." + fname
    			// If function must be inlined somewhere, being inlinable is not enough
    			if _, ok := must[fullname]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. pkg/kubelet/status/generate_test.go

    	}
    }
    
    func getReadyStatus(cName string) v1.ContainerStatus {
    	return v1.ContainerStatus{
    		Name:  cName,
    		Ready: true,
    	}
    }
    
    func getNotReadyStatus(cName string) v1.ContainerStatus {
    	return v1.ContainerStatus{
    		Name:  cName,
    		Ready: false,
    	}
    }
    
    func getStartedStatus(cName string) v1.ContainerStatus {
    	return v1.ContainerStatus{
    		Name:    cName,
    		Started: pointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  7. 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)
  8. releasenotes/notes/fix-external-name.yaml

    John Howard <******@****.***> 1713547188 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:48 UTC 2024
    - 264 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/invalid-listener-name.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid-listener-name
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: bad>
        protocol: HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 194 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    	for _, fi := range fis {
    		if strings.HasSuffix(fi.Name(), ".v1.count") {
    			fname := filepath.Join(localdir, fi.Name())
    			_, expiry, err := u.counterDateSpan(fname)
    			switch {
    			case err != nil:
    				u.logger.Printf("Error reading expiry for count file %s: %v", fi.Name(), err)
    			case expiry.After(u.startTime):
    				u.logger.Printf("Skipping count file %s: still active", fi.Name())
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top