Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for iImportData (0.14 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)
Back to top