Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for iImportData (0.13 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)
  3. build-logic/lifecycle/src/main/kotlin/gradlebuild.teamcity-import-test-data.gradle.kts

            val taskResult = event.result
    
            if (taskResult is TaskSuccessResult && (taskResult.isFromCache || taskResult.isUpToDate)) {
                println("##teamcity[importData type='junit' path='$outputXmlPath/TEST-*.xml' verbose='true']")
            }
        }
    }
    
    if (isTeamCityParallelTestsEnabled) {
        val gradleRootDir = repoRoot().asFile.toPath()
        project.gradle.taskGraph.whenReady {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 09:11:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/importer.go

    		// case goimporterMagic:
    		// 	var data []byte
    		// 	data, err = io.ReadAll(reader)
    		// 	if err != nil {
    		// 		return
    		// 	}
    		// 	var n int
    		// 	n, pkg, err = importer.ImportData(imports, data)
    		// 	if err != nil {
    		// 		return
    		// 	}
    
    		// 	if initmap != nil {
    		// 		suffixreader := bytes.NewReader(data[n:])
    		// 		var p parser
    		// 		p.init(fpath, suffixreader, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 6.8K bytes
    - Viewed (0)
Back to top