Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for iImportData (0.26 sec)

  1. src/go/internal/gcimporter/gcimporter.go

    				return
    			}
    			s := string(data)
    			s = s[:strings.LastIndex(s, "\n$$\n")]
    
    			input := pkgbits.NewPkgDecoder(id, s)
    			pkg = readUnifiedPackage(fset, nil, packages, input)
    		case 'i':
    			pkg, err = iImportData(fset, packages, buf, id)
    		default:
    			err = fmt.Errorf("import %q: old binary export format no longer supported (recompile library)", path)
    		}
    
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/iimport.go

    	structType
    	interfaceType
    	typeParamType
    	instanceType
    	unionType
    )
    
    // iImportData imports a package from the serialized package data
    // and returns the number of bytes consumed and a reference to the package.
    // If the export data version is not recognized or the format is otherwise
    // compromised, an error is returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top