/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/ |
feedPublish.sh | 30 buildID="S200609210005"; 37 cmd=$cmd" -Dbranch=$branch -Dversion=$version -DbuildID=$buildID -DbuildAlias=$buildAlias -DbuildType="${buildID:0:1};
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
note_test.go | 17 const buildID = "TestNoteReading-Build-ID" 18 tg.run("build", "-ldflags", "-buildid="+buildID, "-o", tg.path("hello.exe"), tg.path("hello.go")) 23 if id != buildID { 24 t.Fatalf("buildID in hello binary = %q, want %q", id, buildID) 40 tg.run("build", "-ldflags", "-buildid="+buildID+" -linkmode=external", "-o", tg.path("hello.exe"), tg.path("hello.go")) 45 if id != buildID { 46 t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external)", id, buildID [all...] |
pkg.go | 100 buildID string // expected build ID for generated package 1694 buildid = []byte("build id ") var [all...] |
build.go | [all...] |
/prebuilts/go/linux-x86/src/cmd/go/ |
note_test.go | 17 const buildID = "TestNoteReading-Build-ID" 18 tg.run("build", "-ldflags", "-buildid="+buildID, "-o", tg.path("hello.exe"), tg.path("hello.go")) 23 if id != buildID { 24 t.Fatalf("buildID in hello binary = %q, want %q", id, buildID) 40 tg.run("build", "-ldflags", "-buildid="+buildID+" -linkmode=external", "-o", tg.path("hello.exe"), tg.path("hello.go")) 45 if id != buildID { 46 t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external)", id, buildID [all...] |
pkg.go | 100 buildID string // expected build ID for generated package 1694 buildid = []byte("build id ") var [all...] |
build.go | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/ |
buildAll.bat | 11 REM default setting for buildID
12 set buildID=
41 if x%1==x-buildID set buildID=-DbuildId=%2 && shift && shift && goto processcmdlineargs
48 %vm% -cp ..\org.eclipse.releng.basebuilder\startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner -f buildAll.xml %target% %bootclasspath% -DmapVersionTag=%mapVersionTag% -DbuildType=%buildType% %buildID% %ftpUser% %ftpPassword%
52 echo "usage: buildAll [-mapVersionTag HEAD|<branch name>] [-vm <url to java executable to run build>] [-bc <bootclasspath>] [-target <buildall target to execute>] [-buildID <buildID, e.g. 2.1.2>] [-ftp <userid> <password>] I|M"
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/ |
feedPublish.eclipse.properties | 26 buildID=I20060922-0010 28 buildURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%% 33 # optional build type; one of: N, I, M, S, R; if not provided, will be pulled from buildID above 37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downloads/drops/%%buildID%%/ 43 releaseNotesURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/buildNotes.php 60 JUnitTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/testResults.php 61 performanceTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/performance/performance.php
|
feedPublish.emf.properties | 26 buildID=S200611091546 28 buildURL=http://www.eclipse.org/emf/downloads/?showAll=1&hlbuild=%%buildID%%#%%buildID%% 33 # optional build type; one of: N, I, M, S, R; if not provided, will be pulled from buildID above 37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/tools/emf/downloads/drops/%%version%%/%%buildID%%/ 60 JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/tools/emf/downloads/drops/%%version%%/%%buildID%%/testResults.php
|
feedPublish.uml2.properties | 26 buildID=I200611141702 28 buildURL=http://www.eclipse.org/modeling/mdt/downloads/?project=uml2-uml&showAll=1&hlbuild=%%buildID%%#%%buildID%% 33 # optional build type; one of: N, I, M, S, R; if not provided, will be pulled from buildID above 37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/modeling/mdt/uml2-uml/downloads/drops/%%version%%/%%buildID%%/ 60 JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/modeling/mdt/uml2-uml/downloads/drops/%%version%%/%%buildID%%/testResults.php
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
ScenarioData.java | 60 * @param pointsOfInterest A list of buildId's to highlight on line graphs 107 String buildID = buildResults.getName(); 108 int underscoreIndex = buildID.indexOf('_'); 109 String label = (underscoreIndex != -1 && buildID.equals(current)) ? buildID.substring(0, underscoreIndex) : buildID; 110 if (buildID.startsWith(defaultBaselinePrefix)) { 111 label = defaultBaselinePrefix+buildID.charAt(defaultBaselinePrefix.length())+buildID.substring(underscoreIndex); 116 if (buildID.equals(current)) [all...] |
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/symbolizer/ |
symbolizer.go | 118 f, err := locateFile(obj, m.File, m.BuildID, m.Start) 125 if fid := f.BuildID(); m.BuildID != "" && fid != "" && fid != m.BuildID { 139 // named $BUILDID/$BASENAME and $BASENAME (if build id is available). 140 func locateFile(obj plugin.ObjTool, file, buildID string, start uint64) (plugin.ObjFile, error) { 148 // Collect names to search: {buildid/basename, basename} 150 if baseName := filepath.Base(file); buildID != "" { 151 fileNames = []string{filepath.Join(buildID, baseName), baseName} 159 fileBuildID := f.BuildID() [all...] |
/prebuilts/go/linux-x86/src/cmd/pprof/internal/symbolizer/ |
symbolizer.go | 118 f, err := locateFile(obj, m.File, m.BuildID, m.Start) 125 if fid := f.BuildID(); m.BuildID != "" && fid != "" && fid != m.BuildID { 139 // named $BUILDID/$BASENAME and $BASENAME (if build id is available). 140 func locateFile(obj plugin.ObjTool, file, buildID string, start uint64) (plugin.ObjFile, error) { 148 // Collect names to search: {buildid/basename, basename} 150 if baseName := filepath.Base(file); buildID != "" { 151 fileNames = []string{filepath.Join(buildID, baseName), baseName} 159 fileBuildID := f.BuildID() [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/ |
messages.properties | 28 RSSFeedAddEntryTask.BuildIDError=Warning: no buildID specified, eg., S200506071234\! 29 RSSFeedAddEntryTask.BuildURLError=Warning: no buildURL specified, eg., http://server/path/to/project/downloads/drops/branch/buildID/\! 38 RSSFeedAddEntryTask.BuildIDKeyword=%%buildID%%
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/ |
RSSFeedAddEntryTask.java | 51 * buildID - build's ID, eg., S200605051234 54 * buildURL - URL of the build being added to the feed - eg., http://servername/path/to/project/branch/buildID/ 94 * JUnitTestURL - URL of the build's JUnit test results - eg., http://servername/path/to/project/branch/buildID/testResults.php 95 * performanceTestURL - URL of the build's performance tests - eg., http://servername/path/to/project/branch/buildID/performance/performance.php 96 * APITestURL - URL of the build's API test results - eg., http://servername/path/to/project/branch/buildID/testResults.php 127 private String buildID; 178 public void setBuildID(String buildID) { 179 if (isNullString(buildID)) 182 { this.buildID = buildID; } [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/ |
bugTools.jar | |
feedTools.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/ |
UpdateBugStateTask.java | 185 private String buildID; 207 buildID = EMPTY; 296 buildID = m.group(1) + m.group(2) + m.group(3) + m.group(4) + m.group(5) + m.group(6); 413 if (buildAlias.equals(EMPTY) && buildID.equals(EMPTY)) 417 else if (!buildAlias.equals(EMPTY) && !buildID.equals(EMPTY)) 419 buildstring = buildAlias + SP + "(" + buildID + ")"; //$NON-NLS-1$ //$NON-NLS-2$ 423 buildstring = (!buildAlias.equals(EMPTY) ? buildAlias : buildID);
|
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/driver/ |
driver.go | 334 func grabProfile(source, exec, buildid string, fetch plugin.Fetcher, sym plugin.Symbolizer, obj plugin.ObjTool, ui plugin.UI, f *flags) (*profile.Profile, error) { 364 // Replace executable/buildID with the options provided in the 366 if exec != "" || buildid != "" { 381 if buildid != "" { 382 p.Mapping[0].BuildID = buildid 638 flagBuildID: flag.String("buildid", "", "Override build id for first mapping"), 892 " -buildid=id Override build id for main binary in profile\n" + 901 " finds binaries by $name and $buildid/$name"
|
/prebuilts/go/linux-x86/src/cmd/pprof/internal/driver/ |
driver.go | 334 func grabProfile(source, exec, buildid string, fetch plugin.Fetcher, sym plugin.Symbolizer, obj plugin.ObjTool, ui plugin.UI, f *flags) (*profile.Profile, error) { 364 // Replace executable/buildID with the options provided in the 366 if exec != "" || buildid != "" { 381 if buildid != "" { 382 p.Mapping[0].BuildID = buildid 638 flagBuildID: flag.String("buildid", "", "Override build id for first mapping"), 892 " -buildid=id Override build id for main binary in profile\n" + 901 " finds binaries by $name and $buildid/$name"
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/ |
performanceui.jar | |