Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for seenLibs (0.1 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/go.go

    	if ctxt.Target.IsOpenbsd() {
    		return dedupLibrariesOpenBSD(ctxt, libs)
    	}
    	return libs
    }
    
    var seenlib = make(map[string]bool)
    
    func adddynlib(ctxt *Link, lib string) {
    	if seenlib[lib] || ctxt.LinkMode == LinkExternal {
    		return
    	}
    	seenlib[lib] = true
    
    	if ctxt.IsELF {
    		dsu := ctxt.loader.MakeSymbolUpdater(ctxt.DynStr)
    		if dsu.Size() == 0 {
    			dsu.Addstring("")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    			if s != 0 {
    				ctxt.loader.SetAttrCgoExportDynamic(s, false)
    			}
    		}
    	}
    }
    
    func machoadddynlib(lib string, linkmode LinkMode) {
    	if seenlib[lib] || linkmode == LinkExternal {
    		return
    	}
    	seenlib[lib] = true
    
    	// Will need to store the library name rounded up
    	// and 24 bytes of header metadata. If not enough
    	// space, grab another page of initial space at the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top