Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Begin (0.47 sec)

  1. doc/README.md

    That will merge the `.md` files in `next` into a single file.
    Atomically (as close to it as possible) add that file to `_content/doc` directory
    of the website repository and remove the `doc/next` directory in this repository.
    
    To begin the next release development cycle, populate the contents of `next`
    with those of `initial`. From the repo root:
    
        > cd doc
        > cp -r initial/* next
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    Every package in a program must have a unique import path.
    By convention, this is arranged by starting each path with a
    unique prefix that belongs to you. For example, paths used
    internally at Google all begin with 'google', and paths
    denoting remote repositories begin with the path to the code,
    such as 'github.com/user/repo'.
    
    Packages in a program need not have unique package names,
    but there are two reserved package names with special meaning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    	for i := 0; i < len(list); {
    		begin := getPC(decodeValue(ctxt, readPtr(ctxt, list[i:])))
    		end := getPC(decodeValue(ctxt, readPtr(ctxt, list[i+ctxt.Arch.PtrSize:])))
    
    		// Horrible hack. If a range contains only zero-width
    		// instructions, e.g. an Arg, and it's at the beginning of the
    		// function, this would be indistinguishable from an
    		// end entry. Fudge it.
    		if begin == 0 && end == 0 {
    			end = 1
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/buildid.go

    	}
    
    	// If user requested -a, we force a rebuild, so don't use the cache.
    	if cfg.BuildA {
    		if p := a.Package; p != nil && !p.Stale {
    			p.Stale = true
    			p.StaleReason = "build -a flag in use"
    		}
    		// Begin saving output for later writing to cache.
    		a.output = []byte{}
    		return false
    	}
    
    	defer func() {
    		// Increment counters for cache hits and misses based on the return value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    	// appear in this list.
    	InitOrder []*Initializer
    
    	// FileVersions maps a file to its Go version string.
    	// If the file doesn't specify a version, the reported
    	// string is Config.GoVersion.
    	// Version strings begin with “go”, like “go1.21”, and
    	// are suitable for use with the [go/version] package.
    	FileVersions map[*syntax.PosBase]string
    }
    
    func (info *Info) recordTypes() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // By convention, this is arranged by starting each path with a
    // unique prefix that belongs to you. For example, paths used
    // internally at Google all begin with 'google', and paths
    // denoting remote repositories begin with the path to the code,
    // such as 'github.com/user/repo'.
    //
    // Packages in a program need not have unique package names,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    		// Paths beginning with "mod/" might accidentally
    		// look in the module cache directory tree in $GOPATH/pkg/mod/.
    		// This prefix is owned by the Go core for possible use in the
    		// standard library (since it does not begin with a domain name),
    		// so it's OK to disallow entirely.
    		return nil, false, fmt.Errorf("disallowed import path %q", path)
    	}
    
    	if strings.Contains(path, "@") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/cmd/cgo/godefs.go

    	// Any names still using the _C syntax are not going to compile,
    	// although in general we don't know whether they all made it
    	// into the file, so we can't warn here.
    	//
    	// The most common case is union types, which begin with
    	// _Ctype_union and for which typedef[name] is a Go byte
    	// array of the appropriate size (such as [4]byte).
    	// Substitute those union types with byte arrays.
    	for name, id := range goIdent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    			ml.data[0] = uint32(machoPlatform)
    			ml.data[1] = version // OS version
    			ml.data[2] = version // SDK version
    			ml.data[3] = 0       // ntools
    		}
    	}
    
    	// empirically, string table must begin with " \x00".
    	s := ctxt.loader.LookupOrCreateSym(".machosymstr", 0)
    	sb := ctxt.loader.MakeSymbolUpdater(s)
    
    	sb.SetType(sym.SMACHOSYMSTR)
    	sb.SetReachable(true)
    	sb.AddUint8(' ')
    	sb.AddUint8('\x00')
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/obj9.go

    	v := uint64(v64)
    	vp := (v & -v) + v
    	// Likewise, for the wrapping case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    	return (v&vp == 0 || vn&vpn == 0) && v != 0
    }
    
    // Encode a doubleword rotate mask into mb (mask begin) and
    // me (mask end, inclusive). Note, POWER ISA labels bits in
    // big endian order.
    func encodePPC64RLDCMask(mask int64) (mb, me int) {
    	// Determine boundaries and then decode them
    	mb = bits.LeadingZeros64(uint64(mask))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top