Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for outras (0.73 sec)

  1. src/cmd/compile/internal/test/abiutilsaux_test.go

    	}
    	s := types.NewStruct(fields)
    	return s
    }
    
    func mkFuncType(rcvr *types.Type, ins []*types.Type, outs []*types.Type) *types.Type {
    	q := typecheck.Lookup("?")
    	inf := []*types.Field{}
    	for _, it := range ins {
    		inf = append(inf, mkParamResultField(it, q, ir.PPARAM))
    	}
    	outf := []*types.Field{}
    	for _, ot := range outs {
    		outf = append(outf, mkParamResultField(ot, q, ir.PPARAMOUT))
    	}
    	var rf *types.Field
    	if rcvr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/mkbuiltin.go

    	// The backend may create more references of builtin functions.
    	// We also want to include predefined types.
    	// Add them.
    	extras := append(fextras[:], enumerateBasicTypes()...)
    	for _, b := range extras {
    		prefix := ""
    		if !strings.HasPrefix(b.name, "type:") {
    			prefix = pkg + "."
    		}
    		name := prefix + b.name
    		if decls[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/cover/cfg_test.go

    	outfilelist := filepath.Join(outdir, tag+"outfilelist.txt")
    	var sb strings.Builder
    	cv := filepath.Join(outdir, "covervars.go")
    	outfs := []string{cv}
    	fmt.Fprintf(&sb, "%s\n", cv)
    	for _, inf := range infiles {
    		base := filepath.Base(inf)
    		of := filepath.Join(outdir, tag+".cov."+base)
    		outfs = append(outfs, of)
    		fmt.Fprintf(&sb, "%s\n", of)
    	}
    	if err := os.WriteFile(outfilelist, []byte(sb.String()), 0666); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top