Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for attach (0.48 sec)

  1. src/cmd/compile/internal/rangefunc/rewrite.go

    the end of the containing function. To fix that, the runtime provides
    a special hook that lets us obtain a defer "token" representing the
    outer function and then use it in a later defer to attach the deferred
    code to that outer function.
    
    Normally,
    
    	defer print("A")
    
    compiles to
    
    	runtime.deferproc(func() { print("A") })
    
    This changes in a range-over-func. For example:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/import.go

    // that suggests a 'go get' command for root packages that transitively import
    // packages from modules with missing sums. load.CheckPackageErrors would be
    // a good place to consolidate errors, but we'll need to attach the import
    // stack here.
    type ImportMissingSumError struct {
    	importPath                string
    	found                     bool
    	mods                      []module.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/instantiate.go

    // orig must be an *Alias, *Named, or *Signature type. If there is no error,
    // the resulting Type is an instantiated type of the same kind (*Alias, *Named
    // or *Signature, respectively).
    //
    // Methods attached to a *Named type are also instantiated, and associated with
    // a new *Func that has the same position as the original method, but nil function
    // scope.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/cmd/distpack/pack.go

    		strings.HasSuffix(name, ".bash") ||
    		strings.HasSuffix(name, ".sh") ||
    		strings.HasSuffix(name, ".pl") ||
    		strings.HasSuffix(name, ".rc") {
    		return 0o755
    	} else if ok, _ := amatch("**/go_?*_?*_exec", name); ok {
    		return 0o755
    	}
    	return 0o644
    }
    
    // readVERSION reads the VERSION file.
    // The first line of the file is the Go version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    	// get associated methods
    	// (Checker.collectObjects only collects methods with non-blank names;
    	// Checker.resolveBaseTypeName ensures that obj is not an alias name
    	// if it has attached methods.)
    	methods := check.methods[obj]
    	if methods == nil {
    		return
    	}
    	delete(check.methods, obj)
    	assert(!check.objMap[obj].tdecl.Alias) // don't use TypeName.IsAlias (requires fully set up object)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    		// compiled with '-p main' causes duplicate symbol errors.
    		// See golang.org/issue/30907, golang.org/issue/34114.
    		if p.Name == "main" && p != pmain && p != ptest {
    			split()
    		}
    		// Split and attach PGO information to test dependencies if preal
    		// is built with PGO.
    		if preal.Internal.PGOProfile != "" && p.Internal.PGOProfile == "" {
    			split()
    		}
    	}
    
    	// Do search to find cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. doc/godebug.md

    that can be used in TLS handshakes, controlled by the [`tlsmaxrsasize` setting](/pkg/crypto/tls#Conn.Handshake).
    The default is tlsmaxrsasize=8192, limiting RSA to 8192-bit keys. To avoid
    denial of service attacks, this setting and default was backported to Go
    1.19.13, Go 1.20.8, and Go 1.21.1.
    
    Go 1.22 made it an error for a request or response read by a net/http
    client or server to have an empty Content-Length header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top