Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for Clulow (0.26 sec)

  1. src/cmd/compile/internal/types2/context.go

    // this was not an explicit design goal of the context type. In fact, due to
    // concurrent use it is convenient not to guarantee de-duplication.
    //
    // Nevertheless, in the future it could be helpful to allow users to leverage
    // contexts to canonicalize instances, and it would probably be possible to
    // achieve such a guarantee.
    
    // A Context is an opaque type checking context. It may be used to share
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/toolchain.go

    		if !ok {
    			continue
    		}
    		if !have[v] {
    			have[v] = true
    			list = append(list, goPrefix+v)
    		}
    	}
    
    	// Always include our own version.
    	// This means that the development branch of Go 1.21 (say) will allow 'go get go@1.21'
    	// even though there are no Go 1.21 releases yet.
    	// Once there is a release, 1.21 will be treated as a query matching the latest available release.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/stmt.go

    		ir.CurFunc.SetHasDefer(true)
    		ir.CurFunc.NumDefers++
    		if ir.CurFunc.NumDefers > maxOpenDefers || n.DeferAt != nil {
    			// Don't allow open-coded defers if there are more than
    			// 8 defers in the function, since we use a single
    			// byte to record active defers.
    			// Also don't allow if we need to use deferprocat.
    			ir.CurFunc.SetOpenCodedDeferDisallowed(true)
    		}
    		if n.Esc() != ir.EscNever {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/mod.go

    func ModSort(list []module.Version) {
    	sort.Slice(list, func(i, j int) bool {
    		mi := list[i]
    		mj := list[j]
    		if mi.Path != mj.Path {
    			return mi.Path < mj.Path
    		}
    		// To help go.sum formatting, allow version/file.
    		// Compare semver prefix by semver rules,
    		// file by string order.
    		vi := mi.Version
    		vj := mj.Version
    		var fi, fj string
    		if k := strings.Index(vi, "/"); k >= 0 {
    			vi, fi = vi[:k], vi[k:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/dirhash/hash.go

    // license that can be found in the LICENSE file.
    
    // Package dirhash defines hashes over directory trees.
    // These hashes are recorded in go.sum files and in the Go checksum database,
    // to allow verifying that a newly-downloaded module has the expected content.
    package dirhash
    
    import (
    	"archive/zip"
    	"crypto/sha256"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/list.go

    					// mgErr is already set, so just skip this module.
    					continue
    				}
    			}
    
    			allowed := CheckAllowed
    			if IsRevisionQuery(path, vers) || mode&ListRetracted != 0 {
    				// Allow excluded and retracted versions if the user asked for a
    				// specific revision or used 'go list -retracted'.
    				allowed = nil
    			}
    			info, err := queryReuse(ctx, path, vers, current, allowed, reuse)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/transform.go

    func (Form) Reset() {}
    
    // Transform implements the Transform method of the transform.Transformer
    // interface. It may need to write segments of up to MaxSegmentSize at once.
    // Users should either catch ErrShortDst and allow dst to grow or have dst be at
    // least of size MaxTransformChunkSize to be guaranteed of progress.
    func (f Form) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	// Cap the maximum number of src bytes to check.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/web/api.go

    // The zero value is "secure".
    type SecurityMode int
    
    const (
    	SecureOnly      SecurityMode = iota // Reject plain HTTP; validate HTTPS.
    	DefaultSecurity                     // Allow plain HTTP if explicit; validate HTTPS.
    	Insecure                            // Allow plain HTTP if not explicitly HTTPS; skip HTTPS validation.
    )
    
    // An HTTPError describes an HTTP error response (non-200 result).
    type HTTPError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/godefs.go

    	fmt.Fprintf(&buf, "// %s %s\n", filepath.Base(args[0]), strings.Join(args[1:], " "))
    	fmt.Fprintf(&buf, "\n")
    
    	override := make(map[string]string)
    
    	// Allow source file to specify override mappings.
    	// For example, the socket data structures refer
    	// to in_addr and in_addr6 structs but we want to be
    	// able to treat them as byte arrays, so the godefs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/transport/transport.go

    // New returns a round tripper for making requests with the
    // specified cert, key, and ca. The flags tls_cert, tls_key, and tls_ca are
    // added to the flagset to allow a user to specify the cert, key, and ca. If
    // the flagset is nil, no flags will be added, and users will not be able to
    // use these flags.
    func New(flagset plugin.FlagSet) http.RoundTripper {
    	if flagset == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.8K bytes
    - Viewed (0)
Back to top