Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for seenIPs (0.06 sec)

  1. pkg/kubelet/certificate/kubelet.go

    	seenDNSNames := map[string]bool{}
    	seenIPs := map[string]bool{}
    	for _, address := range addresses {
    		if len(address.Address) == 0 {
    			continue
    		}
    
    		switch address.Type {
    		case v1.NodeHostName:
    			if ip := netutils.ParseIPSloppy(address.Address); ip != nil {
    				seenIPs[address.Address] = true
    			} else {
    				seenDNSNames[address.Address] = true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pcln.go

    		state.lastFunc = s
    
    		// We need to keep track of all compilation units we see. Some symbols
    		// (eg, go.buildid, _cgoexp_, etc) won't have a compilation unit.
    		cu := ldr.SymUnit(s)
    		if _, ok := seenCUs[cu]; cu != nil && !ok {
    			seenCUs[cu] = struct{}{}
    			cu.PclnIndex = len(compUnits)
    			compUnits = append(compUnits, cu)
    		}
    	}
    	return state, compUnits, funcs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top