LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // DO NOT EDIT THIS FILE. GENERATED BY mkdoc.sh. | 5 // DO NOT EDIT THIS FILE. GENERATED BY mkdoc.sh. |
6 // Edit the documentation in other files and rerun mkdoc.sh to generate this one
. | 6 // Edit the documentation in other files and rerun mkdoc.sh to generate this one
. |
7 | 7 |
8 /* | 8 /* |
9 Go is a tool for managing Go source code. | 9 Go is a tool for managing Go source code. |
10 | 10 |
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 | 674 |
675 Launchpad (Bazaar) | 675 Launchpad (Bazaar) |
676 | 676 |
677 import "launchpad.net/project" | 677 import "launchpad.net/project" |
678 import "launchpad.net/project/series" | 678 import "launchpad.net/project/series" |
679 import "launchpad.net/project/series/sub/directory" | 679 import "launchpad.net/project/series/sub/directory" |
680 | 680 |
681 import "launchpad.net/~user/project/branch" | 681 import "launchpad.net/~user/project/branch" |
682 import "launchpad.net/~user/project/branch/sub/directory" | 682 import "launchpad.net/~user/project/branch/sub/directory" |
683 | 683 |
| 684 IBM DevOps Services (Git) |
| 685 |
| 686 import "hub.jazz.net/git/user/project" |
| 687 import "hub.jazz.net/git/user/project/sub/directory" |
| 688 |
684 For code hosted on other servers, import paths may either be qualified | 689 For code hosted on other servers, import paths may either be qualified |
685 with the version control type, or the go tool can dynamically fetch | 690 with the version control type, or the go tool can dynamically fetch |
686 the import path over https/http and discover where the code resides | 691 the import path over https/http and discover where the code resides |
687 from a <meta> tag in the HTML. | 692 from a <meta> tag in the HTML. |
688 | 693 |
689 To declare the code location, an import path of the form | 694 To declare the code location, an import path of the form |
690 | 695 |
691 repository.vcs/path | 696 repository.vcs/path |
692 | 697 |
693 specifies the given repository, with or without the .vcs suffix, | 698 specifies the given repository, with or without the .vcs suffix, |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
981 | 986 |
982 The entire test file is presented as the example when it contains a single | 987 The entire test file is presented as the example when it contains a single |
983 example function, at least one other function, type, variable, or constant | 988 example function, at least one other function, type, variable, or constant |
984 declaration, and no test or benchmark functions. | 989 declaration, and no test or benchmark functions. |
985 | 990 |
986 See the documentation of the testing package for more information. | 991 See the documentation of the testing package for more information. |
987 | 992 |
988 | 993 |
989 */ | 994 */ |
990 package main | 995 package main |
LEFT | RIGHT |