File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ func defaultListenAddr() string {
9696 // root).
9797 return ":5936"
9898 }
99- // check if if env is dev
99+ // check if env is dev
100100 if ! metadata .OnGCE () && ! onEC2 () {
101101 return "localhost:5936"
102102 }
Original file line number Diff line number Diff line change 3333// messages for the Go project, see [here](...).
3434//
3535// Rules currently err on the side of simplicity and avoiding false positives.
36- // It is is intended to be straightforward to add a new rule.
36+ // It is intended to be straightforward to add a new rule.
3737//
3838// Rules can be arranged to trigger completely independently of one another,
3939// or alternatively a set of rules can optionally be arranged in groups that
Original file line number Diff line number Diff line change 11# golang.org/x/build/cmd/golangbuild
22
3- ` golangbuild ` is a a [ LUCI Executable] ( https://pkg.go.dev/go.chromium.org/luci/luciexe ) ("luciexe") binary that builds and tests the code for the Go project. Its current code location is:
3+ ` golangbuild ` is a [ LUCI Executable] ( https://pkg.go.dev/go.chromium.org/luci/luciexe ) ("luciexe") binary that builds and tests the code for the Go project. Its current code location is:
44
55https://source.chromium.org/chromium/infra/infra/+/main:go/src/infra/experimental/golangbuild
Original file line number Diff line number Diff line change @@ -1078,7 +1078,7 @@ func TestTryBotsCompileAllPorts(t *testing.T) {
10781078// The 'linux-arm-arm5' pseduo-port is supported by src/buildall.bash
10791079// and tests linux/arm with GOARM=5 set. Since it's not a normal port,
10801080// the TestTryBotsCompileAllPorts wouldn't report if the misc-compile
1081- // TryBot that covers is is accidentally removed. Check it explicitly.
1081+ // TryBot that covers is accidentally removed. Check it explicitly.
10821082func TestMiscCompileLinuxGOARM5 (t * testing.T ) {
10831083 for _ , b := range Builders {
10841084 if ! strings .HasPrefix (b .Name , "misc-compile-" ) {
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ func TestParameters(t *testing.T) {
207207func TestParameterValue (t * testing.T ) {
208208 var p interface {} = wf.ParamDef [int ]{}
209209 if _ , ok := p .(wf.Value [int ]); ok {
210- t .Errorf ("Parameter unexpectedly implements Value; it intentionally tries not to to reduce possible API misuse" )
210+ t .Errorf ("Parameter unexpectedly implements Value; it intentionally tries not to reduce possible API misuse" )
211211 }
212212}
213213
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ <h2 class="Dashboard-title" id="loading">Loading...</h2>
112112// This constant exists because allowing the axis' range to be arbitrarily
113113// small produces results that are really noisy visually, even though they
114114// represent virtually no change. For instance, a relatively low-noise
115- // series of benchmark results, with a min delta of -0.05% and and +0.05%
115+ // series of benchmark results, with a min delta of -0.05% and +0.05%
116116// might appear really noisy if we "zoom" in too far, when in actuality
117117// the amount of noise is incredibly low.
118118const minViewDeltaPercent = 0.025 ;
You can’t perform that action at this time.
0 commit comments