This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id: 8919157845550588816 | |
builder { | |
project: "chrome" | |
bucket: "try" | |
builder: "Linux Builder Perf" | |
} | |
number: 480 | |
created_by: "user:[email protected]" | |
create_time { | |
seconds: 1552425260 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "bb-${build_id}-${project}-${builder}", | |
"priority": "30", | |
"tags": [ | |
"log_location:logdog://logs.chromium.org/${project}/buildbucket/${hostname}/${build_id}/+/annotations", | |
"luci_project:${project}" | |
], | |
"pool_task_template": "SKIP", | |
"task_slices": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
initResin gr-app.js:859:403 | |
Unexpected plugin analytics installed from preloaded:analytics. gr-app.js:1656:42 | |
Unexpected plugin buildbucket installed from preloaded:buildbucket. gr-app.js:1656:42 | |
Unexpected plugin chromium-behavior installed from preloaded:chromium-behavior. gr-app.js:1656:42 | |
Unexpected plugin chromium-coverage installed from preloaded:chromium-coverage. gr-app.js:1656:42 | |
Unexpected plugin chromium-style installed from preloaded:chromium-style. gr-app.js:1656:42 | |
Unexpected plugin chumpdetector installed from preloaded:chumpdetector. gr-app.js:1656:42 | |
Unexpected plugin clearcut installed from preloaded:clearcut. gr-app.js:1656:42 | |
Unexpected plugin codemirror_editor installed from preloaded:codemirror_editor. gr-app.js:1656:42 | |
Unexpected plugin commitqueue installed from preloaded:commitqueue. gr-app.js:1656:42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<gr-overlay id="tryJobsPicker" with-backdrop="" no-cancel-on-outside-click="" class="style-scope cr-buildbucket-view x-scope gr-overlay-0" tabindex="-1" style="outline: none; position: fixed; top: 0px; left: 577.867px; box-sizing: border-box; max-height: 308px; max-width: 1618px; z-index: 103;"> | |
<cr-tryjob-picker autofocus="" tabindex="-1" class="style-scope cr-buildbucket-view"> | |
<header class="style-scope cr-tryjob-picker"> | |
<h3 class="style-scope cr-tryjob-picker">Choose tryjobs</h3> | |
</header> | |
<main class="style-scope cr-tryjob-picker"> | |
<input autofocus="" is="iron-input" type="text" placeholder="Regex filter" class="filter style-scope cr-tryjob-picker"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[cr go] proto $ (bqsu-addmissing) bqschemaupdater -message "buildbucket.v2.Build" -table "cr-buildbucket-dev.builds.completed_BETA" | |
Updating table "cr-buildbucket-dev.builds.completed_BETA" | |
The following changes to the schema will be made: | |
================================================================================ | |
--- Current | |
+++ New | |
@@ -126,8 +126,7 @@ | |
// Gerrit patchsets to run against. | |
// Usually present in tryjobs, set by CQ, Gerrit, git-cl-try. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[cr go] proto $ (completed_builds) bqschemaupdater -message buildbucket.events.BuildCompleted -table cr-buildbucket-dev.experimental.completed_builds | |
Updating table "cr-buildbucket-dev.experimental.completed_builds" | |
The following changes to the schema will be made. | |
================================================================================ | |
--- Current | |
+++ New | |
@@ -76,6 +76,9 @@ | |
repeated STRING tags | |
INTEGER x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Time of the event creation. | |
TIMESTAMP create_time | |
// The state of the build at the completion time. | |
RECORD build { | |
INTEGER x | |
// Buildbucket build id. | |
INTEGER id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package database | |
// Stop, when returned by fn parameter of Run, instructs | |
// Run to stop iterating rows. | |
var Stop = errors.New("stop Run execution") | |
// Run executes a query and calls fn for each row. | |
// | |
// fn must be a function with parameters matching the rows | |
// returned by the query. For example, for a query |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
from google.protobuf.compiler import plugin_pb2 as plugin | |
def generate_code(req): | |
res = plugin.CodeGeneratorResponse() | |
for input in req.proto_file: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import base64, bisect, genericpath, string, zlib | |
def compress(items): | |
class Node(object): | |
def __init__(self): | |
self.children = {} | |
self.descendants = 0 | |
self.value = False |
NewerOlder