├── test ├── fixedbugs │ ├── bug328.out │ ├── bug409.out │ ├── bug106.dir │ │ ├── bug0.go │ │ └── bug1.go │ ├── bug222.dir │ │ ├── chanbug2.go │ │ └── chanbug.go │ ├── bug282.dir │ │ ├── p2.go │ │ └── p1.go │ ├── bug306.dir │ │ ├── p2.go │ │ └── p1.go │ ├── bug377.dir │ │ ├── two.go │ │ └── one.go │ ├── bug382.dir │ │ └── pkg.go │ ├── bug063.go │ ├── bug133.dir │ │ ├── bug0.go │ │ └── bug1.go │ ├── bug050.go │ ├── bug160.dir │ │ └── x.go │ ├── bug282.go │ ├── bug306.go │ ├── bug083.go │ ├── bug232.go │ ├── bug335.dir │ │ ├── a.go │ │ └── b.go │ ├── bug396.go │ ├── bug404.go │ ├── bug407.go │ ├── bug222.go │ ├── bug302.go │ ├── bug345.go │ ├── bug083.dir │ │ └── bug0.go │ ├── bug415.dir │ │ ├── main.go │ │ └── p.go │ ├── bug169.go │ ├── bug224.go │ ├── bug088.go │ ├── bug106.go │ ├── bug133.go │ ├── bug191.dir │ │ ├── b.go │ │ └── a.go │ ├── bug313.dir │ │ ├── b.go │ │ └── a.go │ ├── bug392.go │ ├── bug414.go │ ├── bug160.go │ ├── bug233.go │ ├── bug377.go │ ├── bug396.dir │ │ ├── one.go │ │ └── two.go │ ├── bug163.go │ ├── bug174.go │ ├── bug181.go │ ├── bug037.go │ ├── bug065.go │ ├── bug072.go │ ├── bug088.dir │ │ └── bug0.go │ ├── bug104.go │ ├── bug132.go │ ├── bug241.go │ ├── bug422.go │ ├── bug021.go │ ├── bug248.dir │ │ ├── bug0.go │ │ └── bug1.go │ ├── bug324.go │ ├── bug367.go │ ├── bug048.go │ ├── bug077.go │ ├── bug182.go │ ├── bug108.go │ ├── bug129.go │ ├── bug318.go │ ├── bug030.go │ ├── bug172.go │ ├── bug328.go │ ├── bug376.go │ ├── bug380.go │ ├── bug062.go │ ├── bug074.go │ ├── bug115.go │ ├── bug192.go │ ├── bug335.go │ ├── bug039.go │ ├── bug171.go │ ├── bug198.go │ ├── bug322.go │ ├── bug415.go │ ├── bug002.go │ ├── bug015.go │ ├── bug053.go │ ├── bug078.go │ ├── bug202.go │ ├── bug420.go │ ├── bug040.go │ ├── bug051.go │ ├── bug067.go │ ├── bug118.go │ ├── bug351.go │ ├── bug391.go │ ├── bug399.go │ ├── bug413.go │ ├── bug131.go │ ├── bug287.go │ ├── bug298.go │ ├── bug322.dir │ │ └── lib.go │ ├── bug394.go │ ├── bug122.go │ ├── bug123.go │ ├── bug188.go │ ├── bug416.go │ ├── bug004.go │ ├── bug235.go │ ├── bug103.go │ ├── bug145.go │ ├── bug175.go │ ├── bug280.go │ ├── bug345.dir │ │ └── io.go │ ├── bug081.go │ ├── bug165.go │ ├── bug186.go │ ├── bug419.go │ ├── bug164.go │ ├── bug369.dir │ │ └── pkg.go │ ├── bug003.go │ ├── bug046.go │ ├── bug152.go │ ├── bug245.go │ ├── bug252.go │ ├── bug259.go │ ├── bug317.go │ ├── bug355.go │ ├── bug382.go │ ├── bug392.dir │ │ └── three.go │ ├── bug112.go │ ├── bug161.go │ ├── bug250.go │ ├── bug295.go │ ├── bug361.go │ ├── bug397.go │ ├── bug176.go │ ├── bug367.dir │ │ └── p.go │ ├── bug383.go │ ├── bug404.dir │ │ ├── two.go │ │ └── one.go │ ├── bug407.dir │ │ └── two.go │ ├── bug035.go │ ├── bug110.go │ ├── bug211.go │ ├── bug073.go │ ├── bug126.go │ ├── bug127.go │ ├── bug191.go │ ├── bug256.go │ ├── bug302.dir │ │ └── main.go │ ├── bug375.go │ ├── bug412.go │ ├── bug000.go │ ├── bug203.go │ ├── bug254.go │ ├── bug385_32.go │ ├── bug248.go │ ├── bug214.go │ ├── bug315.go │ ├── bug330.go │ ├── bug370.go │ ├── bug005.go │ ├── bug121.go │ ├── bug213.go │ ├── bug263.go │ └── bug290.go ├── helloworld.out ├── sigchld.out ├── bench │ ├── shootout │ │ ├── threadring.txt │ │ ├── spectral-norm.txt │ │ ├── nbody.txt │ │ ├── pidigits.txt │ │ ├── mandelbrot.txt │ │ ├── regex-dna.txt │ │ ├── binary-tree.txt │ │ ├── regex-dna-parallel.txt │ │ ├── binary-tree-freelist.txt │ │ ├── meteor-contest.txt │ │ ├── k-nucleotide.txt │ │ └── k-nucleotide-parallel.txt │ └── go1 │ │ ├── dummy.go │ │ └── Makefile ├── printbig.out ├── ken │ ├── string.out │ ├── cplx0.out │ └── for.go ├── dwarf │ ├── z11.go │ ├── z12.go │ ├── z13.go │ ├── z14.go │ ├── z15.go │ ├── z16.go │ ├── z17.go │ ├── z19.go │ ├── z2.go │ ├── z20.go │ ├── z3.go │ ├── z4.go │ ├── z5.go │ ├── z6.go │ ├── z7.go │ ├── z8.go │ ├── z9.go │ ├── z1.go │ ├── z18.go │ └── z10.go ├── goprint.out ├── bugs │ ├── placeholder │ ├── 424.go │ └── 424.dir │ │ └── lib.go ├── deferprint.out ├── golden.out ├── safe │ ├── usesafe.go │ ├── nousesafe.go │ └── main.go ├── syntax │ ├── import.go │ ├── semi5.go │ ├── semi6.go │ ├── forvar.go │ ├── interface.go │ ├── semi2.go │ ├── typesw.go │ ├── else.go │ ├── vareq.go │ ├── vareq1.go │ ├── semi1.go │ ├── semi7.go │ ├── if.go │ ├── semi3.go │ └── semi4.go ├── helloworld.go ├── eof.go ├── gc1.go ├── eof1.go ├── empty.go ├── printbig.go └── ddd2.go ├── misc ├── goplay │ ├── README │ └── Makefile ├── osx │ ├── etc │ │ └── paths.d │ │ │ └── go │ └── README ├── dist │ ├── darwin │ │ ├── etc │ │ │ └── paths.d │ │ │ │ └── go │ │ └── README │ ├── windows │ │ └── images │ │ │ ├── Banner.jpg │ │ │ ├── Dialog.jpg │ │ │ ├── gopher.ico │ │ │ └── DialogLeft.jpg │ └── README ├── chrome │ └── gophertool │ │ ├── gopher.png │ │ └── README.txt ├── vim │ ├── ftdetect │ │ └── gofiletype.vim │ └── ftplugin │ │ └── go │ │ └── godoc.vim ├── dashboard │ ├── app │ │ ├── static │ │ │ ├── status_alert.gif │ │ │ └── status_good.gif │ │ ├── cron.yaml │ │ └── build │ │ │ └── notify.txt │ ├── godashboard │ │ ├── static │ │ │ └── favicon.ico │ │ ├── cron.yaml │ │ ├── _multiprocessing.py │ │ ├── fail-notify.txt │ │ ├── project-notify.txt │ │ └── auth.py │ └── builder │ │ └── Makefile ├── notepadplus │ └── README ├── cgo │ ├── testso │ │ ├── test.bash │ │ ├── cgoso_c.c │ │ ├── main.go │ │ └── cgoso.go │ ├── stdio │ │ └── hello.go │ ├── life │ │ ├── life.h │ │ ├── test.bash │ │ └── golden.out │ └── test │ │ ├── exports.go │ │ └── sleep_windows.go ├── swig │ └── stdio │ │ ├── hello.go │ │ └── file.swig └── zsh │ └── go ├── src ├── pkg │ ├── archive │ │ ├── tar │ │ │ └── testdata │ │ │ │ ├── small.txt │ │ │ │ ├── small2.txt │ │ │ │ ├── v7.tar │ │ │ │ └── writer-big.tar │ │ └── zip │ │ │ └── testdata │ │ │ ├── dd.zip │ │ │ ├── r.zip │ │ │ ├── test.zip │ │ │ ├── unix.zip │ │ │ ├── winxp.zip │ │ │ ├── readme.zip │ │ │ ├── symlink.zip │ │ │ ├── readme.notzip │ │ │ └── gophercolor16x16.png │ ├── net │ │ ├── http │ │ │ └── testdata │ │ │ │ ├── file │ │ │ │ ├── style.css │ │ │ │ └── index.html │ │ ├── cgo_bsd.go │ │ ├── cgo_linux.go │ │ ├── testdata │ │ │ └── hosts │ │ └── sendfile_stub.go │ ├── runtime │ │ ├── cgo │ │ │ └── gcc_arm.S │ │ ├── signals_plan9.h │ │ ├── defs_plan9_386.h │ │ ├── arch_386.h │ │ ├── arch_arm.h │ │ ├── arch_amd64.h │ │ ├── signals_windows.h │ │ ├── Makefile │ │ ├── rt0_netbsd_386.s │ │ ├── rt0_openbsd_386.s │ │ ├── rt0_netbsd_amd64.s │ │ ├── rt0_openbsd_amd64.s │ │ ├── rt0_darwin_386.s │ │ ├── rt0_freebsd_386.s │ │ ├── rt0_freebsd_amd64.s │ │ ├── rt0_linux_amd64.s │ │ ├── rt0_darwin_amd64.s │ │ ├── runtime1.goc │ │ ├── cgocall.h │ │ └── rt0_windows_amd64.s │ ├── go │ │ ├── build │ │ │ ├── pkgtest │ │ │ │ ├── sqrt_386_test.go │ │ │ │ ├── sqrt_amd64_test.go │ │ │ │ ├── sqrt_arm_test.go │ │ │ │ ├── sqrt_test.go │ │ │ │ ├── xsqrt_test.go │ │ │ │ ├── sqrt_amd64.s │ │ │ │ ├── sqrt_386.s │ │ │ │ ├── sqrt_arm.s │ │ │ │ └── pkgtest.go │ │ │ ├── syslist.go │ │ │ ├── cgotest │ │ │ │ ├── cgotest.h │ │ │ │ └── cgotest.c │ │ │ └── cmdtest │ │ │ │ └── main.go │ │ ├── printer │ │ │ └── testdata │ │ │ │ ├── empty.input │ │ │ │ └── empty.golden │ │ └── doc │ │ │ ├── testdata │ │ │ ├── a.0.golden │ │ │ ├── a.1.golden │ │ │ ├── a.2.golden │ │ │ ├── a0.go │ │ │ ├── a1.go │ │ │ ├── f.0.golden │ │ │ ├── f.2.golden │ │ │ └── f.1.golden │ │ │ └── Makefile │ ├── syscall │ │ ├── zsysnum_windows_386.go │ │ ├── zsysnum_windows_amd64.go │ │ ├── syscall_plan9_386.go │ │ ├── syscall_windows_386.go │ │ ├── syscall_windows_amd64.go │ │ ├── zerrors_windows_386.go │ │ ├── zerrors_windows_amd64.go │ │ ├── asm_windows_386.s │ │ └── asm_windows_amd64.s │ ├── text │ │ └── template │ │ │ └── testdata │ │ │ ├── tmpl1.tmpl │ │ │ ├── tmpl2.tmpl │ │ │ ├── file1.tmpl │ │ │ └── file2.tmpl │ ├── image │ │ ├── testdata │ │ │ ├── video-001.gif │ │ │ ├── video-001.jpeg │ │ │ ├── video-001.png │ │ │ ├── video-001.5bpp.gif │ │ │ ├── video-005.gray.jpeg │ │ │ ├── video-005.gray.png │ │ │ └── video-001.interlaced.gif │ │ └── png │ │ │ └── testdata │ │ │ ├── invalid-zlib.png │ │ │ ├── invalid-crc32.png │ │ │ ├── invalid-noend.png │ │ │ ├── invalid-trunc.png │ │ │ └── pngsuite │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn0g16.png │ │ │ ├── basn2c08.png │ │ │ ├── basn2c16.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn4a16.png │ │ │ ├── basn6a08.png │ │ │ ├── basn6a16.png │ │ │ ├── basn0g01-30.png │ │ │ ├── basn0g02-29.png │ │ │ ├── basn0g04-31.png │ │ │ └── basn3p08-trns.png │ ├── debug │ │ ├── dwarf │ │ │ └── testdata │ │ │ │ ├── typedef.elf │ │ │ │ └── typedef.macho │ │ ├── pe │ │ │ └── testdata │ │ │ │ ├── gcc-386-mingw-obj │ │ │ │ ├── gcc-386-mingw-exec │ │ │ │ └── hello.c │ │ ├── elf │ │ │ └── testdata │ │ │ │ ├── gcc-386-freebsd-exec │ │ │ │ ├── gcc-amd64-linux-exec │ │ │ │ ├── go-relocation-test-gcc441-x86.obj │ │ │ │ ├── go-relocation-test-gcc424-x86-64.obj │ │ │ │ └── go-relocation-test-gcc441-x86-64.obj │ │ ├── macho │ │ │ └── testdata │ │ │ │ ├── gcc-386-darwin-exec │ │ │ │ ├── gcc-amd64-darwin-exec │ │ │ │ ├── hello.c │ │ │ │ └── gcc-amd64-darwin-exec-debug │ │ └── gosym │ │ │ └── pclinetest.h │ ├── encoding │ │ └── json │ │ │ └── testdata │ │ │ └── code.json.gz │ ├── regexp │ │ └── testdata │ │ │ └── re2-exhaustive.txt.bz2 │ ├── exp │ │ ├── README │ │ └── html │ │ │ └── testdata │ │ │ └── webkit │ │ │ ├── plain-text-unsafe.dat │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ └── scripted │ │ │ └── adoption01.dat │ ├── math │ │ ├── abs_arm.s │ │ ├── exp_arm.s │ │ ├── log_arm.s │ │ ├── mod_arm.s │ │ ├── tan_arm.s │ │ ├── atan_arm.s │ │ ├── exp2_arm.s │ │ ├── mod_amd64.s │ │ ├── modf_arm.s │ │ ├── tan_amd64.s │ │ ├── atan2_amd64.s │ │ ├── atan2_arm.s │ │ ├── atan_amd64.s │ │ ├── exp2_amd64.s │ │ ├── expm1_amd64.s │ │ ├── expm1_arm.s │ │ ├── frexp_amd64.s │ │ ├── frexp_arm.s │ │ ├── hypot_arm.s │ │ ├── ldexp_amd64.s │ │ ├── ldexp_arm.s │ │ ├── log1p_amd64.s │ │ ├── log1p_arm.s │ │ ├── modf_amd64.s │ │ ├── sincos_arm.s │ │ ├── remainder_arm.s │ │ ├── remainder_amd64.s │ │ ├── sin_arm.s │ │ ├── asin_arm.s │ │ ├── sin_amd64.s │ │ ├── asin_amd64.s │ │ ├── log10_arm.s │ │ ├── log10_amd64.s │ │ ├── sqrt_amd64.s │ │ ├── dim_arm.s │ │ ├── sqrt_386.s │ │ ├── dim_386.s │ │ ├── sqrt_arm.s │ │ ├── cmplx │ │ │ ├── conj.go │ │ │ └── rect.go │ │ ├── floor_arm.s │ │ ├── floor_amd64.s │ │ ├── abs_386.s │ │ ├── export_test.go │ │ ├── signbit.go │ │ ├── abs_amd64.s │ │ ├── atan_386.s │ │ └── log_386.s │ ├── os │ │ ├── export_test.go │ │ └── signal │ │ │ └── signal_stub.go │ ├── mime │ │ └── test.types │ ├── crypto │ │ └── tls │ │ │ └── root_stub.go │ ├── sort │ │ ├── export_test.go │ │ └── example_test.go │ ├── strings │ │ └── export_test.go │ ├── bytes │ │ ├── export_test.go │ │ ├── bytes_decl.go │ │ └── asm_arm.s │ ├── sync │ │ └── export_test.go │ ├── time │ │ └── internal_test.go │ └── unicode │ │ └── digit.go ├── cmd │ ├── gofmt │ │ └── testdata │ │ │ ├── stdin1.golden │ │ │ ├── stdin1.input │ │ │ ├── stdin1.golden.gofmt │ │ │ ├── stdin1.input.gofmt │ │ │ ├── stdin4.golden │ │ │ ├── stdin4.input │ │ │ ├── stdin4.golden.gofmt │ │ │ ├── stdin4.input.gofmt │ │ │ ├── old.input │ │ │ ├── stdin3.input │ │ │ ├── old.golden │ │ │ ├── stdin2.golden.gofmt │ │ │ ├── stdin3.golden │ │ │ ├── stdin3.golden.gofmt │ │ │ ├── stdin3.input.gofmt │ │ │ ├── comments.golden │ │ │ ├── comments.input │ │ │ ├── stdin2.input │ │ │ ├── stdin2.golden │ │ │ ├── stdin2.input.gofmt │ │ │ ├── rewrite1.golden │ │ │ └── rewrite1.input │ ├── godoc │ │ └── README.godoc-app │ ├── 5c │ │ └── Makefile │ ├── 5g │ │ └── Makefile │ ├── 5l │ │ ├── Makefile │ │ └── doc.go │ ├── 6c │ │ └── Makefile │ ├── 6g │ │ └── Makefile │ ├── 6l │ │ ├── Makefile │ │ └── doc.go │ ├── 8c │ │ └── Makefile │ ├── 8g │ │ └── Makefile │ ├── 8l │ │ ├── Makefile │ │ └── doc.go │ ├── cov │ │ └── Makefile │ ├── nm │ │ └── Makefile │ ├── pack │ │ └── Makefile │ ├── prof │ │ └── Makefile │ ├── api │ │ └── testdata │ │ │ └── src │ │ │ └── pkg │ │ │ └── p2 │ │ │ ├── p2.go │ │ │ └── golden.txt │ ├── go │ │ ├── mkdoc.sh │ │ └── script │ ├── vet │ │ └── Makefile │ ├── 5a │ │ └── Makefile │ ├── 6a │ │ └── Makefile │ ├── 8a │ │ └── Makefile │ ├── cc │ │ ├── Makefile │ │ └── doc.go │ ├── yacc │ │ └── Makefile │ └── gc │ │ └── md5.h ├── lib9 │ └── Makefile ├── libbio │ └── Makefile └── libmach │ └── Makefile ├── doc ├── articles │ ├── wiki │ │ ├── test_Test.txt.good │ │ ├── test_view.good │ │ ├── view.html │ │ ├── test_edit.good │ │ ├── edit.html │ │ ├── http-sample.go │ │ └── htmlify.go │ ├── slice-1.png │ ├── slice-2.png │ ├── slice-3.png │ ├── slice-array.png │ └── slice-struct.png ├── ie.css ├── logo.png ├── sieve.gif ├── gopher │ ├── ref.png │ ├── bumper.png │ ├── gopherbw.png │ ├── frontpage.png │ ├── appenginelogo.gif │ ├── bumper192x108.png │ ├── bumper320x180.png │ ├── bumper480x270.png │ ├── bumper640x360.png │ ├── gophercolor.png │ ├── appenginegopher.jpg │ ├── gophercolor16x16.png │ └── appenginegophercolor.jpg ├── video-001.png ├── video-002.png ├── video-003.png ├── video-004.png ├── video-005.jpg ├── go-logo-blue.png ├── logo-153x55.png ├── play_overlay.png ├── codewalk │ └── popout.png ├── go-logo-black.png ├── go-logo-white.png ├── button_background.png ├── talks │ ├── io2010 │ │ └── talk.pdf │ ├── java-typing.png │ ├── go_talk-20091030.pdf │ ├── io2011 │ │ ├── Real_World_Go.pdf │ │ └── Writing_Web_Apps_in_Go.pdf │ └── gofrontend-gcc-summit-2010.pdf ├── ExpressivenessOfGo.pdf ├── progs │ ├── helloworld.go │ └── strings.go └── devel │ └── index.html ├── robots.txt ├── include ├── utf.h └── plan9 │ ├── mach.h │ ├── ureg_arm.h │ ├── ureg_x86.h │ └── ureg_amd64.h ├── favicon.ico └── lib ├── codereview └── codereview.cfg ├── time └── zoneinfo.zip └── godoc └── error.html /test/fixedbugs/bug328.out: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /misc/goplay/README: -------------------------------------------------------------------------------- 1 | See doc.go. 2 | -------------------------------------------------------------------------------- /test/helloworld.out: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /test/sigchld.out: -------------------------------------------------------------------------------- 1 | survived SIGCHLD 2 | -------------------------------------------------------------------------------- /src/pkg/archive/tar/testdata/small.txt: -------------------------------------------------------------------------------- 1 | Kilts -------------------------------------------------------------------------------- /test/bench/shootout/threadring.txt: -------------------------------------------------------------------------------- 1 | 498 2 | -------------------------------------------------------------------------------- /doc/articles/wiki/test_Test.txt.good: -------------------------------------------------------------------------------- 1 | some content -------------------------------------------------------------------------------- /doc/ie.css: -------------------------------------------------------------------------------- 1 | #nav-main li { display: inline; } 2 | -------------------------------------------------------------------------------- /misc/osx/etc/paths.d/go: -------------------------------------------------------------------------------- 1 | /usr/local/go/bin 2 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /src/pkg/net/http/testdata/file: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /src/pkg/net/http/testdata/style.css: -------------------------------------------------------------------------------- 1 | body {} 2 | -------------------------------------------------------------------------------- /include/utf.h: -------------------------------------------------------------------------------- 1 | #include "../src/lib9/utf/utf.h" 2 | -------------------------------------------------------------------------------- /misc/dist/darwin/etc/paths.d/go: -------------------------------------------------------------------------------- 1 | /usr/local/go/bin 2 | -------------------------------------------------------------------------------- /src/pkg/runtime/cgo/gcc_arm.S: -------------------------------------------------------------------------------- 1 | /* unimplemented */ 2 | -------------------------------------------------------------------------------- /test/bench/shootout/spectral-norm.txt: -------------------------------------------------------------------------------- 1 | 1.274224152 2 | -------------------------------------------------------------------------------- /src/pkg/archive/tar/testdata/small2.txt: -------------------------------------------------------------------------------- 1 | Google.com 2 | -------------------------------------------------------------------------------- /src/pkg/runtime/signals_plan9.h: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin1.golden: -------------------------------------------------------------------------------- 1 | if x { 2 | y 3 | } 4 | -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin1.input: -------------------------------------------------------------------------------- 1 | if x { 2 | y 3 | } 4 | -------------------------------------------------------------------------------- /src/pkg/go/build/pkgtest/sqrt_386_test.go: -------------------------------------------------------------------------------- 1 | package pkgtest 2 | -------------------------------------------------------------------------------- /src/pkg/go/build/pkgtest/sqrt_amd64_test.go: -------------------------------------------------------------------------------- 1 | package pkgtest 2 | -------------------------------------------------------------------------------- /src/pkg/go/build/pkgtest/sqrt_arm_test.go: -------------------------------------------------------------------------------- 1 | package pkgtest 2 | -------------------------------------------------------------------------------- /src/pkg/net/http/testdata/index.html: -------------------------------------------------------------------------------- 1 | index.html says hello 2 | -------------------------------------------------------------------------------- /test/bench/shootout/nbody.txt: -------------------------------------------------------------------------------- 1 | -0.169075164 2 | -0.169087605 3 | -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/logo.png -------------------------------------------------------------------------------- /doc/sieve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/sieve.gif -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/favicon.ico -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin1.golden.gofmt: -------------------------------------------------------------------------------- 1 | if x { 2 | y 3 | } 4 | -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin1.input.gofmt: -------------------------------------------------------------------------------- 1 | if x { 2 | y 3 | } 4 | -------------------------------------------------------------------------------- /test/printbig.out: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 9223372036854775807 3 | -------------------------------------------------------------------------------- /lib/codereview/codereview.cfg: -------------------------------------------------------------------------------- 1 | defaultcc: golang-dev@googlegroups.com 2 | -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin4.golden: -------------------------------------------------------------------------------- 1 | // comment 2 | 3 | i := 0 4 | -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin4.input: -------------------------------------------------------------------------------- 1 | // comment 2 | 3 | i := 0 4 | -------------------------------------------------------------------------------- /test/ken/string.out: -------------------------------------------------------------------------------- 1 | abcxyz-abcxyz-abcxyz-abcxyz-abcxyz-abcxyz-abcxyz 2 | -------------------------------------------------------------------------------- /doc/gopher/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/ref.png -------------------------------------------------------------------------------- /doc/video-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/video-001.png -------------------------------------------------------------------------------- /doc/video-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/video-002.png -------------------------------------------------------------------------------- /doc/video-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/video-003.png -------------------------------------------------------------------------------- /doc/video-004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/video-004.png -------------------------------------------------------------------------------- /doc/video-005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/video-005.jpg -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin4.golden.gofmt: -------------------------------------------------------------------------------- 1 | // comment 2 | 3 | i := 0 4 | -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin4.input.gofmt: -------------------------------------------------------------------------------- 1 | // comment 2 | 3 | i := 0 4 | -------------------------------------------------------------------------------- /test/dwarf/z11.go: -------------------------------------------------------------------------------- 1 | 2 | //line x11.go:4 3 | package main 4 | func F11() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z12.go: -------------------------------------------------------------------------------- 1 | 2 | //line x12.go:4 3 | package main 4 | func F12() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z13.go: -------------------------------------------------------------------------------- 1 | 2 | //line x13.go:4 3 | package main 4 | func F13() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z14.go: -------------------------------------------------------------------------------- 1 | 2 | //line x14.go:4 3 | package main 4 | func F14() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z15.go: -------------------------------------------------------------------------------- 1 | 2 | //line x15.go:4 3 | package main 4 | func F15() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z16.go: -------------------------------------------------------------------------------- 1 | 2 | //line x16.go:4 3 | package main 4 | func F16() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z17.go: -------------------------------------------------------------------------------- 1 | 2 | //line x17.go:4 3 | package main 4 | func F17() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z19.go: -------------------------------------------------------------------------------- 1 | 2 | //line x19.go:4 3 | package main 4 | func F19() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z2.go: -------------------------------------------------------------------------------- 1 | 2 | //line x2.go:4 3 | package main 4 | func F2() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z20.go: -------------------------------------------------------------------------------- 1 | 2 | //line x20.go:4 3 | package main 4 | func F20() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z3.go: -------------------------------------------------------------------------------- 1 | 2 | //line x3.go:4 3 | package main 4 | func F3() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z4.go: -------------------------------------------------------------------------------- 1 | 2 | //line x4.go:4 3 | package main 4 | func F4() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z5.go: -------------------------------------------------------------------------------- 1 | 2 | //line x5.go:4 3 | package main 4 | func F5() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z6.go: -------------------------------------------------------------------------------- 1 | 2 | //line x6.go:4 3 | package main 4 | func F6() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z7.go: -------------------------------------------------------------------------------- 1 | 2 | //line x7.go:4 3 | package main 4 | func F7() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z8.go: -------------------------------------------------------------------------------- 1 | 2 | //line x8.go:4 3 | package main 4 | func F8() {} 5 | -------------------------------------------------------------------------------- /test/dwarf/z9.go: -------------------------------------------------------------------------------- 1 | 2 | //line x9.go:4 3 | package main 4 | func F9() {} 5 | -------------------------------------------------------------------------------- /doc/go-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/go-logo-blue.png -------------------------------------------------------------------------------- /doc/logo-153x55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/logo-153x55.png -------------------------------------------------------------------------------- /doc/play_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/play_overlay.png -------------------------------------------------------------------------------- /src/pkg/runtime/defs_plan9_386.h: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | #define tos_pid 48 3 | -------------------------------------------------------------------------------- /test/dwarf/z1.go: -------------------------------------------------------------------------------- 1 | 2 | 3 | //line x1.go:4 4 | package main 5 | func F1() {} 6 | -------------------------------------------------------------------------------- /test/dwarf/z18.go: -------------------------------------------------------------------------------- 1 | 2 | 3 | //line x18.go:4 4 | package main 5 | func F18() {} 6 | -------------------------------------------------------------------------------- /doc/codewalk/popout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/codewalk/popout.png -------------------------------------------------------------------------------- /doc/go-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/go-logo-black.png -------------------------------------------------------------------------------- /doc/go-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/go-logo-white.png -------------------------------------------------------------------------------- /doc/gopher/bumper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/bumper.png -------------------------------------------------------------------------------- /doc/gopher/gopherbw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/gopherbw.png -------------------------------------------------------------------------------- /lib/time/zoneinfo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/lib/time/zoneinfo.zip -------------------------------------------------------------------------------- /src/pkg/runtime/arch_386.h: -------------------------------------------------------------------------------- 1 | enum { 2 | thechar = '8', 3 | CacheLineSize = 64 4 | }; 5 | -------------------------------------------------------------------------------- /src/pkg/runtime/arch_arm.h: -------------------------------------------------------------------------------- 1 | enum { 2 | thechar = '5', 3 | CacheLineSize = 32 4 | }; 5 | -------------------------------------------------------------------------------- /test/dwarf/z10.go: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | //line x10.go:4 5 | package main 6 | func F10() {} 7 | -------------------------------------------------------------------------------- /test/goprint.out: -------------------------------------------------------------------------------- 1 | 42 true false true +1.500000e+000 world 0x0 [0/0]0x0 0x0 0x0 255 2 | -------------------------------------------------------------------------------- /doc/articles/slice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/articles/slice-1.png -------------------------------------------------------------------------------- /doc/articles/slice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/articles/slice-2.png -------------------------------------------------------------------------------- /doc/articles/slice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/articles/slice-3.png -------------------------------------------------------------------------------- /doc/button_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/button_background.png -------------------------------------------------------------------------------- /doc/gopher/frontpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/frontpage.png -------------------------------------------------------------------------------- /doc/talks/io2010/talk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/talks/io2010/talk.pdf -------------------------------------------------------------------------------- /doc/talks/java-typing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/talks/java-typing.png -------------------------------------------------------------------------------- /src/pkg/runtime/arch_amd64.h: -------------------------------------------------------------------------------- 1 | enum { 2 | thechar = '6', 3 | CacheLineSize = 64 4 | }; 5 | -------------------------------------------------------------------------------- /src/pkg/syscall/zsysnum_windows_386.go: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | 3 | package syscall 4 | -------------------------------------------------------------------------------- /src/pkg/syscall/zsysnum_windows_amd64.go: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | 3 | package syscall 4 | -------------------------------------------------------------------------------- /test/bench/shootout/pidigits.txt: -------------------------------------------------------------------------------- 1 | 3141592653 :10 2 | 5897932384 :20 3 | 6264338 :27 4 | -------------------------------------------------------------------------------- /test/fixedbugs/bug409.out: -------------------------------------------------------------------------------- 1 | +1.000000e+000 +2.000000e+000 +3.000000e+000 +4.000000e+000 2 | -------------------------------------------------------------------------------- /doc/ExpressivenessOfGo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/ExpressivenessOfGo.pdf -------------------------------------------------------------------------------- /doc/articles/slice-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/articles/slice-array.png -------------------------------------------------------------------------------- /doc/gopher/appenginelogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/appenginelogo.gif -------------------------------------------------------------------------------- /doc/gopher/bumper192x108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/bumper192x108.png -------------------------------------------------------------------------------- /doc/gopher/bumper320x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/bumper320x180.png -------------------------------------------------------------------------------- /doc/gopher/bumper480x270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/bumper480x270.png -------------------------------------------------------------------------------- /doc/gopher/bumper640x360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/bumper640x360.png -------------------------------------------------------------------------------- /doc/gopher/gophercolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/gophercolor.png -------------------------------------------------------------------------------- /doc/articles/slice-struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/articles/slice-struct.png -------------------------------------------------------------------------------- /doc/gopher/appenginegopher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/appenginegopher.jpg -------------------------------------------------------------------------------- /doc/talks/go_talk-20091030.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/talks/go_talk-20091030.pdf -------------------------------------------------------------------------------- /src/cmd/godoc/README.godoc-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/cmd/godoc/README.godoc-app -------------------------------------------------------------------------------- /src/pkg/text/template/testdata/tmpl1.tmpl: -------------------------------------------------------------------------------- 1 | template1 2 | {{define "x"}}x{{end}} 3 | {{template "y"}} 4 | -------------------------------------------------------------------------------- /src/pkg/text/template/testdata/tmpl2.tmpl: -------------------------------------------------------------------------------- 1 | template2 2 | {{define "y"}}y{{end}} 3 | {{template "x"}} 4 | -------------------------------------------------------------------------------- /doc/gopher/gophercolor16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/gophercolor16x16.png -------------------------------------------------------------------------------- /misc/chrome/gophertool/gopher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/misc/chrome/gophertool/gopher.png -------------------------------------------------------------------------------- /src/pkg/text/template/testdata/file1.tmpl: -------------------------------------------------------------------------------- 1 | {{define "x"}}TEXT{{end}} 2 | {{define "dotV"}}{{.V}}{{end}} 3 | -------------------------------------------------------------------------------- /test/bench/go1/dummy.go: -------------------------------------------------------------------------------- 1 | package go1 2 | 3 | // Nothing to see here: everything is in the _test files. 4 | -------------------------------------------------------------------------------- /doc/gopher/appenginegophercolor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/gopher/appenginegophercolor.jpg -------------------------------------------------------------------------------- /doc/talks/io2011/Real_World_Go.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/talks/io2011/Real_World_Go.pdf -------------------------------------------------------------------------------- /misc/dist/windows/images/Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/misc/dist/windows/images/Banner.jpg -------------------------------------------------------------------------------- /misc/dist/windows/images/Dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/misc/dist/windows/images/Dialog.jpg -------------------------------------------------------------------------------- /misc/dist/windows/images/gopher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/misc/dist/windows/images/gopher.ico -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/old.input: -------------------------------------------------------------------------------- 1 | package P 2 | 3 | func f() { 4 | if x { 5 | y 6 | } else 7 | z 8 | } 9 | -------------------------------------------------------------------------------- /src/pkg/archive/tar/testdata/v7.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/tar/testdata/v7.tar -------------------------------------------------------------------------------- /src/pkg/archive/zip/testdata/dd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/zip/testdata/dd.zip -------------------------------------------------------------------------------- /src/pkg/archive/zip/testdata/r.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/zip/testdata/r.zip -------------------------------------------------------------------------------- /test/bench/shootout/mandelbrot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/test/bench/shootout/mandelbrot.txt -------------------------------------------------------------------------------- /test/bugs/placeholder: -------------------------------------------------------------------------------- 1 | This file keeps Mercurial from deleting the directory 2 | when there are no known bugs. 3 | -------------------------------------------------------------------------------- /misc/vim/ftdetect/gofiletype.vim: -------------------------------------------------------------------------------- 1 | au BufRead,BufNewFile *.go set filetype=go fileencoding=utf-8 fileencodings=utf-8 2 | -------------------------------------------------------------------------------- /src/pkg/archive/zip/testdata/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/zip/testdata/test.zip -------------------------------------------------------------------------------- /src/pkg/archive/zip/testdata/unix.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/zip/testdata/unix.zip -------------------------------------------------------------------------------- /src/pkg/archive/zip/testdata/winxp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/zip/testdata/winxp.zip -------------------------------------------------------------------------------- /src/pkg/image/testdata/video-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/image/testdata/video-001.gif -------------------------------------------------------------------------------- /src/pkg/image/testdata/video-001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/image/testdata/video-001.jpeg -------------------------------------------------------------------------------- /src/pkg/image/testdata/video-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/image/testdata/video-001.png -------------------------------------------------------------------------------- /doc/talks/gofrontend-gcc-summit-2010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/talks/gofrontend-gcc-summit-2010.pdf -------------------------------------------------------------------------------- /misc/dist/windows/images/DialogLeft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/misc/dist/windows/images/DialogLeft.jpg -------------------------------------------------------------------------------- /src/pkg/archive/zip/testdata/readme.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/zip/testdata/readme.zip -------------------------------------------------------------------------------- /src/pkg/archive/zip/testdata/symlink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/zip/testdata/symlink.zip -------------------------------------------------------------------------------- /src/pkg/debug/dwarf/testdata/typedef.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/debug/dwarf/testdata/typedef.elf -------------------------------------------------------------------------------- /doc/talks/io2011/Writing_Web_Apps_in_Go.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/doc/talks/io2011/Writing_Web_Apps_in_Go.pdf -------------------------------------------------------------------------------- /misc/dashboard/app/static/status_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/misc/dashboard/app/static/status_alert.gif -------------------------------------------------------------------------------- /misc/dashboard/app/static/status_good.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/misc/dashboard/app/static/status_good.gif -------------------------------------------------------------------------------- /src/cmd/gofmt/testdata/stdin3.input: -------------------------------------------------------------------------------- 1 | 2 | /* note: no newline at end of file */ 3 | for i := 0; i < 10; i++ { s += i } 4 | -------------------------------------------------------------------------------- /src/pkg/archive/tar/testdata/writer-big.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/tar/testdata/writer-big.tar -------------------------------------------------------------------------------- /src/pkg/archive/zip/testdata/readme.notzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/archive/zip/testdata/readme.notzip -------------------------------------------------------------------------------- /src/pkg/debug/dwarf/testdata/typedef.macho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/debug/dwarf/testdata/typedef.macho -------------------------------------------------------------------------------- /src/pkg/debug/pe/testdata/gcc-386-mingw-obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/debug/pe/testdata/gcc-386-mingw-obj -------------------------------------------------------------------------------- /src/pkg/encoding/json/testdata/code.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/encoding/json/testdata/code.json.gz -------------------------------------------------------------------------------- /src/pkg/image/png/testdata/invalid-zlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/image/png/testdata/invalid-zlib.png -------------------------------------------------------------------------------- /src/pkg/image/testdata/video-001.5bpp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/image/testdata/video-001.5bpp.gif -------------------------------------------------------------------------------- /src/pkg/image/testdata/video-005.gray.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/image/testdata/video-005.gray.jpeg -------------------------------------------------------------------------------- /src/pkg/image/testdata/video-005.gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tav/go/HEAD/src/pkg/image/testdata/video-005.gray.png -------------------------------------------------------------------------------- /src/pkg/text/template/testdata/file2.tmpl: -------------------------------------------------------------------------------- 1 | {{define "dot"}}{{.}}{{end}} 2 | {{define "nested"}}{{template "dot" .}}{{end}} 3 | -------------------------------------------------------------------------------- /doc/articles/wiki/test_view.good: -------------------------------------------------------------------------------- 1 |
[edit]
4 | 5 |[edit]
4 | 5 |