Skip to content

Commit 75974bb

Browse files
Merge pull request #90419 from aysabzevar/aliy/update-go-domain-name
The go programming language has a new domain name: go.dev.
2 parents c608e69 + dc35237 commit 75974bb

File tree

37 files changed

+84
-84
lines changed

37 files changed

+84
-84
lines changed

articles/active-directory/managed-identities-azure-resources/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
- name: Python
138138
href: /python/api/overview/azure/identity-readme
139139
- name: Go
140-
href: https://golang.org/doc/
140+
href: https://go.dev/doc/
141141
- name: Resources
142142
items:
143143
- name: Frequently asked questions

articles/azure-cache-for-redis/cache-go-get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you want to skip straight to the code, see the [Go quickstart](https://github
2222
## Prerequisites
2323

2424
- Azure subscription - [create one for free](https://azure.microsoft.com/free/)
25-
- [Go](https://golang.org/doc/install) (preferably version 1.13 or above)
25+
- [Go](https://go.dev/doc/install) (preferably version 1.13 or above)
2626
- [Git](https://git-scm.com/downloads)
2727
- An HTTP client such [curl](https://curl.se/)
2828

@@ -47,7 +47,7 @@ func main() {
4747
...
4848
```
4949
50-
Then, we establish connection with Azure Cache for Redis. We use [tls.Config](https://golang.org/pkg/crypto/tls/#Config)--Azure Cache for Redis only accepts secure connections with [TLS 1.2 as the minimum required version](cache-remove-tls-10-11.md).
50+
Then, we establish connection with Azure Cache for Redis. We use [tls.Config](https://go.dev/pkg/crypto/tls/#Config)--Azure Cache for Redis only accepts secure connections with [TLS 1.2 as the minimum required version](cache-remove-tls-10-11.md).
5151
5252
```go
5353
...
@@ -62,7 +62,7 @@ if err != nil {
6262
...
6363
```
6464
65-
If the connection is successful, [HTTP handlers](https://golang.org/pkg/net/http/#HandleFunc) are configured to handle `POST` and `GET` operations and the HTTP server is started.
65+
If the connection is successful, [HTTP handlers](https://go.dev/pkg/net/http/#HandleFunc) are configured to handle `POST` and `GET` operations and the HTTP server is started.
6666
6767
> [!NOTE]
6868
> [gorilla mux library](https://github.com/gorilla/mux) is used for routing (although it's not strictly necessary and we could have gotten away by using the standard library for this sample application).

articles/azure-functions/create-first-function-vs-code-other.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Before you get started, make sure you have the following requirements in place:
3131

3232
+ The [Azure Functions Core Tools](./functions-run-local.md#v2) version 3.x. Use the `func --version` command to check that it is correctly installed.
3333

34-
+ [Go](https://golang.org/doc/install), latest version recommended. Use the `go version` command to check your version.
34+
+ [Go](https://go.dev/doc/install), latest version recommended. Use the `go version` command to check your version.
3535

3636
# [Rust](#tab/rust)
3737

articles/azure-sql/database/connect-query-go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.date: 04/14/2021
1616
# Quickstart: Use Golang to query a database in Azure SQL Database or Azure SQL Managed Instance
1717
[!INCLUDE[appliesto-sqldb-sqlmi](../includes/appliesto-sqldb-sqlmi.md)]
1818

19-
In this quickstart, you'll use the [Golang](https://godoc.org/github.com/denisenkom/go-mssqldb) programming language to connect to a database in Azure SQL Database or Azure SQL Managed Instance. You'll then run Transact-SQL statements to query and modify data. [Golang](https://golang.org/) is an open-source programming language that makes it easy to build simple, reliable, and efficient software.
19+
In this quickstart, you'll use the [Golang](https://godoc.org/github.com/denisenkom/go-mssqldb) programming language to connect to a database in Azure SQL Database or Azure SQL Managed Instance. You'll then run Transact-SQL statements to query and modify data. [Golang](https://go.dev/) is an open-source programming language that makes it easy to build simple, reliable, and efficient software.
2020

2121
## Prerequisites
2222

@@ -107,7 +107,7 @@ Get the connection information you need to connect to the database. You'll need
107107

108108
1. Create a file named **sample.go** in the **SqlServerSample** folder.
109109

110-
2. In the file, paste this code. Add the values for your server, database, username, and password. This example uses the Golang [context methods](https://golang.org/pkg/context/) to make sure there's an active connection.
110+
2. In the file, paste this code. Add the values for your server, database, username, and password. This example uses the Golang [context methods](https://go.dev/pkg/context/) to make sure there's an active connection.
111111

112112
```go
113113
package main

articles/cognitive-services/Bing-Autosuggest/includes/quickstarts/autosuggest-client-library-go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Use the Bing Autosuggest client library for Go to get search suggestions based o
1919
## Prerequisites
2020

2121
* An Azure subscription. If you don't already have an Azure subscription, [you can create one for free](https://azure.microsoft.com/free/cognitive-services).
22-
* The latest version of [Go](https://golang.org/dl/).
22+
* The latest version of [Go](https://go.dev/dl/).
2323

2424
Begin using the Bing Autosuggest client library by creating an Azure resource. Choose the resource type below that's right for you:
2525

@@ -76,7 +76,7 @@ In a console window (cmd, PowerShell, Terminal, Bash), create a new workspace fo
7676
* **bin**: This directory contains the binary executable files that are created when you run `go install`.
7777

7878
> [!TIP]
79-
> Learn more about the structure of a [Go workspace](https://golang.org/doc/code.html#Workspaces). This guide includes information for setting `$GOPATH` and `$GOROOT`.
79+
> Learn more about the structure of a [Go workspace](https://go.dev/doc/code.html#Workspaces). This guide includes information for setting `$GOPATH` and `$GOROOT`.
8080
8181
Let's create a workspace called `my-app` and the required sub directories for `src`, `pkg`, and `bin`:
8282

articles/cognitive-services/Bing-News-Search/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.custom: mode-api
2121
This quickstart uses the Go language to call the Bing News Search API. The results include names and URLs of news sources identified by the query string.
2222

2323
## Prerequisites
24-
* Install the [Go binaries](https://golang.org/dl/).
24+
* Install the [Go binaries](https://go.dev/dl/).
2525
* Install the go-spew library to use a deep pretty printer to display the results. Use this command to install the library: `$ go get -u https://github.com/davecgh/go-spew`.
2626

2727
[!INCLUDE [cognitive-services-bing-news-search-signup-requirements](../../../includes/cognitive-services-bing-news-search-signup-requirements.md)]

articles/cognitive-services/Bing-Web-Search/quickstarts/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Use this quickstart to make your first call to the Bing Web Search API. This Go
2727
## Prerequisites
2828
Here are a few things that you'll need before running this quickstart:
2929

30-
* [Go binaries](https://golang.org/dl/)
30+
* [Go binaries](https://go.dev/dl/)
3131
* A subscription key
3232

3333
[!INCLUDE [bing-web-search-quickstart-signup](../../../../includes/bing-web-search-quickstart-signup.md)]

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/go-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Use the OCR client library to read printed and handwritten text from images.
2121
## Prerequisites
2222

2323
* An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services/)
24-
* The latest version of [Go](https://golang.org/dl/)
24+
* The latest version of [Go](https://go.dev/dl/)
2525
* Once you have your Azure subscription, <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesComputerVision" title="Create a Computer Vision resource" target="_blank">create a Computer Vision resource </a> in the Azure portal to get your key and endpoint. After it deploys, click **Go to resource**.
2626
* You will need the key and endpoint from the resource you create to connect your application to the Computer Vision service. You'll paste your key and endpoint into the code below later in the quickstart.
2727
* You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.
@@ -44,7 +44,7 @@ Your workspace will contain three folders:
4444
* **bin** - This directory will contain the binary executable files that are created when you run `go install`.
4545

4646
> [!TIP]
47-
> To learn more about the structure of a Go workspace, see the [Go language documentation](https://golang.org/doc/code.html#Workspaces). This guide includes information for setting `$GOPATH` and `$GOROOT`.
47+
> To learn more about the structure of a Go workspace, see the [Go language documentation](https://go.dev/doc/code.html#Workspaces). This guide includes information for setting `$GOPATH` and `$GOROOT`.
4848
4949
### Install the client library for Go
5050

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/image-analysis-go-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Use the Image Analysis client library to analyze an image for tags, text descrip
2121
## Prerequisites
2222

2323
* An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services/)
24-
* The latest version of [Go](https://golang.org/dl/)
24+
* The latest version of [Go](https://go.dev/dl/)
2525
* Once you have your Azure subscription, <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesComputerVision" title="Create a Computer Vision resource" target="_blank">create a Computer Vision resource </a> in the Azure portal to get your key and endpoint. After it deploys, click **Go to resource**.
2626
* You will need the key and endpoint from the resource you create to connect your application to the Computer Vision service. You'll paste your key and endpoint into the code below later in the quickstart.
2727
* You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.
@@ -44,7 +44,7 @@ Your workspace will contain three folders:
4444
* **bin** - This directory will contain the binary executable files that are created when you run `go install`.
4545

4646
> [!TIP]
47-
> To learn more about the structure of a Go workspace, see the [Go language documentation](https://golang.org/doc/code.html#Workspaces). This guide includes information for setting `$GOPATH` and `$GOROOT`.
47+
> To learn more about the structure of a Go workspace, see the [Go language documentation](https://go.dev/doc/code.html#Workspaces). This guide includes information for setting `$GOPATH` and `$GOROOT`.
4848
4949
### Install the client library for Go
5050

articles/cognitive-services/Custom-Vision-Service/includes/quickstarts/go-tutorial-object-detection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Reference documentation [(training)](https://pkg.go.dev/github.com/Azure/azure-s
2424
## Prerequisites
2525

2626
* Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services/)
27-
* [Go 1.8+](https://golang.org/doc/install)
27+
* [Go 1.8+](https://go.dev/doc/install)
2828
* Once you have your Azure subscription, <a href="https://portal.azure.com/?microsoft_azure_marketplace_ItemHideKey=microsoft_azure_cognitiveservices_customvision#create/Microsoft.CognitiveServicesCustomVision" title="Create a Custom Vision resource" target="_blank">create a Custom Vision resource <span class="docon docon-navigate-external x-hidden-focus"></span></a> in the Azure portal to create a training and prediction resource and get your keys and endpoint. Wait for it to deploy and click the **Go to resource** button.
2929
* You will need the key and endpoint from the resources you create to connect your application to Custom Vision. You'll paste your key and endpoint into the code below later in the quickstart.
3030
* You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.

0 commit comments

Comments
 (0)