Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for leash (0.73 sec)

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

    		assert(!isTypeParam(y))
    		// x and y may be identical now
    		if x == y || Unalias(x) == Unalias(y) {
    			return true
    		}
    	}
    
    	// Cases where at least one of x or y is a type parameter recorded with u.
    	// If we have at least one type parameter, there is one in x.
    	// If we have exactly one type parameter, because it is in x,
    	// isTypeLit(x) is false and y was not changed above. In other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    						}
    					} else {
    						// The Go version is at least 1.14, a vendor directory exists, and
    						// the modules.txt was generated in the same mode the command is running in.
    						// Set -mod=vendor by default.
    						cfg.BuildMod = "vendor"
    						cfg.BuildModReason = "Go version in " + versionSource + " is at least 1.14 and vendor directory exists."
    						return
    					}
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	go doc text/template.new # One argument
    //		Show documentation for text/template's New function.
    //	go doc text/template new # Two arguments
    //		Show documentation for text/template's New function.
    //
    //	At least in the current tree, these invocations all print the
    //	documentation for json.Decoder's Decode method:
    //
    //	go doc json.Decoder.Decode
    //	go doc json.decoder.decode
    //	go doc json.decode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/crypto/tls/tls.go

    	"internal/godebug"
    	"net"
    	"os"
    	"strings"
    )
    
    // Server returns a new TLS server side connection
    // using conn as the underlying transport.
    // The configuration config must be non-nil and must include
    // at least one certificate or else set GetCertificate.
    func Server(conn net.Conn, config *Config) *Conn {
    	c := &Conn{
    		conn:   conn,
    		config: config,
    	}
    	c.handshakeFn = c.serverHandshake
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    	// still good.
    	lastCheckedTime, lastChangedTime int32
    	// Whether the block had any changes to user variables at all.
    	relevant bool
    	// false until the block has been processed at least once. This
    	// affects how the merge is done; the goal is to maximize sharing
    	// and avoid allocation.
    	everProcessed bool
    }
    
    // A liveSlot is a slot that's live in loc at entry/exit of a block.
    type liveSlot struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    				// We can't find the package because it doesn't — or can't — even exist
    				// in any module at the latest version. (Note that invalid module paths
    				// could in general exist due to replacements, so we at least need to
    				// run the query to check those.)
    				//
    				// There is no version change we can make to fix the package, so leave
    				// it unresolved. Either some other query (perhaps a wildcard matching a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		//       var a [3]int
    		//       p := (*[2]int)(a[:])
    		//       q := (*[2]int)(a[1:])
    		//       *p = *q
    		// We don't care about solving 1. Or at least, we haven't historically
    		// and no one has complained.
    		// For 2, we need to ensure that if there might be partial overlap,
    		// then we can't use OpMove; we must use memmove instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    	idx := 0
    
    	// Clobber pointer slots in all dead variables at entry.
    	if b == lv.f.Entry {
    		for len(oldSched) > 0 && len(oldSched[0].Args) == 0 {
    			// Skip argless ops. We need to skip at least
    			// the lowered ClosurePtr op, because it
    			// really wants to be first. This will also
    			// skip ops like InitMem and SP, which are ok.
    			b.Values = append(b.Values, oldSched[0])
    			oldSched = oldSched[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/func.go

    // of the format, which is used in places where there's not a Func yet.
    func FuncNameABI(n string, a obj.ABI) string {
    	return fmt.Sprintf("%s,%d", n, a)
    }
    
    // newSparseSet returns a sparse set that can store at least up to n integers.
    func (f *Func) newSparseSet(n int) *sparseSet {
    	return f.Cache.allocSparseSet(n)
    }
    
    // retSparseSet returns a sparse set to the config's cache of sparse
    // sets to be reused by f.newSparseSet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    		// That test doesn't make much sense, and I'm not sure it ever works.
    		// Just generate trampoline for now (which will turn a direct call to
    		// an indirect call, which at least builds).
    		limit = 1
    	}
    
    	// First pass: assign addresses assuming the program is small and will
    	// not require trampoline generation.
    	big := false
    	for _, s := range ctxt.Textp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top