Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for cmd_go_bootstrap (0.22 sec)

  1. src/cmd/go/internal/web/api.go

    // license that can be found in the LICENSE file.
    
    // Package web defines minimal helper routines for accessing HTTP/HTTPS
    // resources without requiring external dependencies on the net package.
    //
    // If the cmd_go_bootstrap build tag is present, web avoids the use of the net
    // package and returns errors for all network operations.
    package web
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"io/fs"
    	"net/url"
    	"strings"
    	"unicode"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/web/http.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !cmd_go_bootstrap
    
    // This code is compiled into the real 'go' binary, but it is not
    // compiled into the binary that is built during all.bash, so as
    // to avoid needing to build net (and thus use cgo) during the
    // bootstrap process.
    
    package web
    
    import (
    	"crypto/tls"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/sumdb.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Go checksum database lookup
    
    //go:build !cmd_go_bootstrap
    
    package modfetch
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"net/url"
    	"os"
    	"path/filepath"
    	"strings"
    	"sync"
    	"time"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	"netbsd":    true,
    	"openbsd":   true,
    	"solaris":   true,
    }
    
    // matchtag reports whether the tag matches this build.
    func matchtag(tag string) bool {
    	switch tag {
    	case "gc", "cmd_go_bootstrap", "go1.1":
    		return true
    	case "linux":
    		return goos == "linux" || goos == "android"
    	case "solaris":
    		return goos == "solaris" || goos == "illumos"
    	case "darwin":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top