<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/go-git.git/test/cmplxdivide.c, branch dev.typealias</title>
<subtitle>github.com: golang/go
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/go-git.git/'/>
<entry>
<title>all: make copyright headers consistent with one space after period</title>
<updated>2016-05-02T13:43:18+00:00</updated>
<author>
<name>Emmanuel Odeke</name>
<email>emm.odeke@gmail.com</email>
</author>
<published>2016-04-10T21:32:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/go-git.git/commit/?id=53fd522c0db58f3bd75d85295f46bb06e8ab1a9b'/>
<id>53fd522c0db58f3bd75d85295f46bb06e8ab1a9b</id>
<content type='text'>
Follows suit with https://go-review.googlesource.com/#/c/20111.

Generated by running
$ grep -R 'Go Authors.  All' * | cut -d":" -f1 | while read F;do perl -pi -e 's/Go
Authors.  All/Go Authors. All/g' $F;done

The code in cmd/internal/unvendor wasn't changed.

Fixes #15213

Change-Id: I4f235cee0a62ec435f9e8540a1ec08ae03b1a75f
Reviewed-on: https://go-review.googlesource.com/21819
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Run-TryBot: Ian Lance Taylor &lt;iant@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Follows suit with https://go-review.googlesource.com/#/c/20111.

Generated by running
$ grep -R 'Go Authors.  All' * | cut -d":" -f1 | while read F;do perl -pi -e 's/Go
Authors.  All/Go Authors. All/g' $F;done

The code in cmd/internal/unvendor wasn't changed.

Fixes #15213

Change-Id: I4f235cee0a62ec435f9e8540a1ec08ae03b1a75f
Reviewed-on: https://go-review.googlesource.com/21819
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Run-TryBot: Ian Lance Taylor &lt;iant@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>test: comment the behavior and use of cmplxdivide*</title>
<updated>2015-01-15T00:00:06+00:00</updated>
<author>
<name>Rob Pike</name>
<email>r@golang.org</email>
</author>
<published>2015-01-14T23:43:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/go-git.git/commit/?id=3b63b69d2f16be676d4fdc4f4ac697ed92abf523'/>
<id>3b63b69d2f16be676d4fdc4f4ac697ed92abf523</id>
<content type='text'>
The various files are confusingly named and their operation
not easy to see. Add a comment to cmplxdivide.c, one of the few
C files that will endure in the repository, to explain how to build
and run the test.

Change-Id: I1fd5c564a14217e1b9815b09bc24cc43c54c096f
Reviewed-on: https://go-review.googlesource.com/2850
Reviewed-by: Russ Cox &lt;rsc@golang.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The various files are confusingly named and their operation
not easy to see. Add a comment to cmplxdivide.c, one of the few
C files that will endure in the repository, to explain how to build
and run the test.

Change-Id: I1fd5c564a14217e1b9815b09bc24cc43c54c096f
Reviewed-on: https://go-review.googlesource.com/2850
Reviewed-by: Russ Cox &lt;rsc@golang.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>test: use testlib in a few more cases</title>
<updated>2012-03-21T18:14:44+00:00</updated>
<author>
<name>Shenghou Ma</name>
<email>minux.ma@gmail.com</email>
</author>
<published>2012-03-21T18:14:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/go-git.git/commit/?id=e2662835b8dd3ca4aa69997afe3774467a677df8'/>
<id>e2662835b8dd3ca4aa69997afe3774467a677df8</id>
<content type='text'>
        Introduce a new skip cmd.

R=golang-dev, bradfitz, iant, iant
CC=golang-dev
https://golang.org/cl/5868048
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
        Introduce a new skip cmd.

R=golang-dev, bradfitz, iant, iant
CC=golang-dev
https://golang.org/cl/5868048
</pre>
</div>
</content>
</entry>
<entry>
<title>delete float, complex - code changes</title>
<updated>2011-01-20T04:09:00+00:00</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2011-01-20T04:09:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/go-git.git/commit/?id=f2b5a07453277de6bc500dc283799441cc375239'/>
<id>f2b5a07453277de6bc500dc283799441cc375239</id>
<content type='text'>
also:
	cmplx -&gt; complex
	float64(1.0) -&gt; 1.0
	float64(1) -&gt; 1.0

R=gri, r, gri1, r2
CC=golang-dev
https://golang.org/cl/3991043
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also:
	cmplx -&gt; complex
	float64(1.0) -&gt; 1.0
	float64(1) -&gt; 1.0

R=gri, r, gri1, r2
CC=golang-dev
https://golang.org/cl/3991043
</pre>
</div>
</content>
</entry>
<entry>
<title>test: override gcc bug when preparing complex divide tables</title>
<updated>2010-07-01T06:34:27+00:00</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-07-01T06:34:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/go-git.git/commit/?id=47c85ec97a483c9adde6ac00a0b9ef180a9472c2'/>
<id>47c85ec97a483c9adde6ac00a0b9ef180a9472c2</id>
<content type='text'>
R=iant
CC=golang-dev
https://golang.org/cl/1666048
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
R=iant
CC=golang-dev
https://golang.org/cl/1666048
</pre>
</div>
</content>
</entry>
<entry>
<title>complex divide: match C99 implementation</title>
<updated>2010-06-18T22:46:00+00:00</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-06-18T22:46:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/go-git.git/commit/?id=21ff75bc0efc34675775168ccae118cd286f904c'/>
<id>21ff75bc0efc34675775168ccae118cd286f904c</id>
<content type='text'>
R=iant, ken2, r, r2, ken3
CC=golang-dev
https://golang.org/cl/1686044
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
R=iant, ken2, r, r2, ken3
CC=golang-dev
https://golang.org/cl/1686044
</pre>
</div>
</content>
</entry>
</feed>
