Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for pkgMap (0.09 sec)

  1. src/cmd/go/internal/modindex/read.go

    				dir, elem := path.Split(p.ImportPath)
    				pkga = pkgtargetroot + "/" + dir + "lib" + elem + ".a"
    			case "gc":
    				pkgtargetroot = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    				pkga = pkgtargetroot + "/" + p.ImportPath + ".a"
    			}
    			p.SrcRoot = ctxt.joinPath(p.Root, "src")
    			p.PkgRoot = ctxt.joinPath(p.Root, "pkg")
    			p.BinDir = ctxt.joinPath(p.Root, "bin")
    			if pkga != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/iimport.go

    	if n <= 0 {
    		errorf("varint failed")
    	}
    	spos := off + uint64(n)
    	s := string(p.stringData[spos : spos+slen])
    	p.stringCache[off] = s
    	return s
    }
    
    func (p *iimporter) pkgAt(off uint64) *types.Package {
    	if pkg, ok := p.pkgCache[off]; ok {
    		return pkg
    	}
    	path := p.stringAt(off)
    	errorf("missing package %q in %q", path, p.ipath)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. internal/config/identity/openid/openid.go

    	}
    	c = Config{
    		Enabled:            false,
    		arnProviderCfgsMap: map[arn.ARN]*providerCfg{},
    		ProviderCfgs:       map[string]*providerCfg{},
    		pubKeys: publicKeys{
    			RWMutex: &sync.RWMutex{},
    			pkMap:   map[string]interface{}{},
    		},
    		roleArnPolicyMap: map[arn.ARN]string{},
    		transport:        openIDClientTransport,
    		closeRespFn:      closeRespFn,
    	}
    
    	seenClientIDs := set.NewStringSet()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top