Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fixes issue 761.
R=PeterGo, adg, rsc
CC=golang-dev
http://codereview.appspot.com/1121042
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 734.
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/975042
Committer: Russ Cox <rsc@golang.org>
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/811044
|
|
instead use pure substring matching to find template values.
this makes stdZulu unnecessary and allows formats
like "20060102 030405" (used in some internet protocols).
this makes Parse not handle years < 0000 or > 9999 anymore.
that seems like an okay price to pay, trading hypothetical
functionality for real functionality.
also changed the comments on the Time struct to use the
same reference date as the format and parse routines.
R=r
CC=golang-dev
http://codereview.appspot.com/833045
|
|
note that sortmain.go has been run through hg gofmt;
only the formatting of the day initializers changed.
i'm happy to revert that formatting if you'd prefer.
stop on error in doc/progs/run
R=r
CC=golang-dev
http://codereview.appspot.com/850041
|
|
thanks to yglgogo for analysis.
Fixes issue 593.
R=rsc
CC=golang-dev
http://codereview.appspot.com/210044
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/202043
Committer: Russ Cox <rsc@golang.org>
|
|
Make sure to print a time zone when formatting even if none is defined.
Add a comment introducing lookupTimezone (not lookupTimeZone).
Fixes isse 577.
R=rsc
CC=golang-dev
http://codereview.appspot.com/196090
|
|
Fixes issue 576.
R=rsc, rog
CC=golang-dev
http://codereview.appspot.com/196061
Committer: Rob Pike <r@golang.org>
|
|
Feel free to suggest other approaches.
R=rsc
CC=cw, golang-dev
http://codereview.appspot.com/193070
|
|
R=r
CC=golang-dev, jackpal
http://codereview.appspot.com/186228
|
|
Fixes issue 527.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186159
|
|
allow formatting of ruby-style times.
Fixes issue 518.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186119
|
|
allow an underscore to stand for a space or digit if the following number is >=10.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186115
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/183141
|
|
add a benchmark
R=rsc
CC=golang-dev
http://codereview.appspot.com/181164
|
|
TBR=r
http://codereview.appspot.com/183133
|
|
The model is that formatString is a a representation of a standard time,
and that Format converts the time to that representation.
Standard representaitons are defined for ANSIC, RFC850, RFC1123, and ISO8601.
There's also a humane Kitchen fomat: 3:04PM.
R=rsc, benolive, cw
CC=golang-dev
http://codereview.appspot.com/181130
|
|
a possible interface for more granular sleep times.
Fixes issue #260.
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/181058
Committer: Rob Pike <r@golang.org>
|
|
Fixes issue 431.
R=r, rsc
CC=golang-dev
http://codereview.appspot.com/179079
Committer: Russ Cox <rsc@golang.org>
|
|
parsing and printing to new syntax.
Use -oldparser to parse the old syntax,
use -oldprinter to print the old syntax.
2) Change default gofmt formatting settings
to use tabs for indentation only and to use
spaces for alignment. This will make the code
alignment insensitive to an editor's tabwidth.
Use -spaces=false to use tabs for alignment.
3) Manually changed src/exp/parser/parser_test.go
so that it doesn't try to parse the parser's
source files using the old syntax (they have
new syntax now).
4) gofmt -w src misc test/bench
5th and last set of files.
R=rsc
CC=golang-dev
http://codereview.appspot.com/180050
|
|
this breaks the dependency of package io on package bytes.
R=rsc
CC=golang-dev
http://codereview.appspot.com/163085
|
|
added random test to look for more.
Fixes issue 363.
R=r, cw
http://codereview.appspot.com/163071
|
|
R=r
CC=hurtonm
http://codereview.appspot.com/164074
|
|
R=rsc, r, r1
http://codereview.appspot.com/160046
Committer: Russ Cox <rsc@golang.org>
|
|
the bash scripts and makefiles for building go didn't take into account
the fact $GOROOT / $GOBIN could both be directories containing whitespaces,
and was not possible to build it in such a situation.
this commit adjusts the various makefiles/scripts to make it aware of that
possibility, and now it builds successfully when using a path with whitespaces
as well.
Fixes issue 115.
R=rsc, dsymonds1
http://codereview.appspot.com/157067
Committer: Russ Cox <rsc@golang.org>
|
|
R=r, gri
CC=golang-dev
http://codereview.appspot.com/156115
|
|
cgo/libmach remain unimplemented. However, compilers, runtime,
and packages are 100%. I still need to go through and implement
missing syscalls (at least make sure they're all listed), but
for all shipped functionality, this is done. Ship! ;)
R=rsc, VenkateshSrinivas
http://codereview.appspot.com/152142
Committer: Russ Cox <rsc@golang.org>
|
|
rsc's algorithm
- applied gofmt -w misc src
- partial CL (last chunk)
R=rsc, r
http://go/go-review/1024041
|
|
R=rsc, r
http://go/go-review/1025029
|
|
- enabled for function declarations (not just function literals)
- applied gofmt -w $GOROOT/src
(look for instance at src/pkg/debug/elf/elf.go)
R=r, rsc
CC=go-dev
http://go/go-review/1026006
|
|
(replacement for CLs 1017039, 1017041, 1017040, 1018054)
R=r
http://go/go-review/1018060
|