Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Nname (0.03 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    func shouldTrack(n *ir.Name) bool {
    	return (n.Class == ir.PAUTO && n.Esc() != ir.EscHeap || n.Class == ir.PPARAM || n.Class == ir.PPARAMOUT) && n.Type().HasPointers()
    }
    
    // getvariables returns the list of on-stack variables that we need to track
    // and a map for looking up indices by *Node.
    func getvariables(fn *ir.Func) ([]*ir.Name, map[*ir.Name]int32) {
    	var vars []*ir.Name
    	for _, n := range fn.Dcl {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. 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)
  3. src/net/lookup_plan9.go

    	}
    	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)
    	}
    
    	lines, err := queryDNS(ctx, name, "cname")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    			u.deleteFiles(files)
    			continue
    		}
    		fname, err := u.createReport(earliest[expiry], expiry, files, lastWeek)
    		if err != nil {
    			u.logger.Printf("Failed to create report for %s: %v", expiry, err)
    			continue
    		}
    		if fname != "" {
    			u.logger.Printf("Ready to upload: %s", filepath.Base(fname))
    			todo.readyfiles = append(todo.readyfiles, fname)
    		}
    	}
    	return todo.readyfiles, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    func validateReferentialIntegrity(t *testing.T, objs object.K8sObjects, cname string, deploymentSelector map[string]string) {
    	t.Run(cname, func(t *testing.T) {
    		deployment := mustFindObject(t, objs, cname, name.DeploymentStr)
    		service := mustFindObject(t, objs, cname, name.ServiceStr)
    		pdb := mustFindObject(t, objs, cname, name.PDBStr)
    		hpa := mustFindObject(t, objs, cname, name.HPAStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	return next, v, true
    }
    
    func (m *mappedFile) lookup(name string) (v *atomic.Uint64, headOff, head uint32, ok bool) {
    	h := hash(name)
    	headOff = m.hdrLen + hashOff + h*4
    	head = m.load32(headOff)
    	off := head
    	for off != 0 {
    		ename, next, v, ok := m.entryAt(off)
    		if !ok {
    			return nil, 0, 0, false
    		}
    		if string(ename) == name {
    			return v, headOff, head, true
    		}
    		off = next
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    		}
    
    		ns := parts[0]
    		hName := host.Name(parts[1])
    		if _, exists := hostsByNamespace[ns]; !exists {
    			hostsByNamespace[ns] = hostClassification{exactHosts: sets.New[host.Name](), allHosts: make([]host.Name, 0)}
    		}
    
    		// exact hosts are saved separately for map lookup
    		if !hName.IsWildCarded() {
    			hostsByNamespace[ns].exactHosts.Insert(hName)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top