Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 319 for nerede (0.18 sec)

  1. src/cmd/go/internal/modcmd/vendor.go

    )
    
    var cmdVendor = &base.Command{
    	UsageLine: "go mod vendor [-e] [-v] [-o outdir]",
    	Short:     "make vendored copy of dependencies",
    	Long: `
    Vendor resets the main module's vendor directory to include all packages
    needed to build and test all the main module's packages.
    It does not include test code for vendored packages.
    
    The -v flag causes vendor to print the names of vendored
    modules and packages to standard error.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    							}
    						}
    					}
    				}
    			}
    
    		ok:
    			// Pick a temporary register if needed.
    			// It should be distinct from all the input registers, so we
    			// allocate it after all the input registers, but before
    			// the input registers are freed via advanceUses below.
    			// (Not all instructions need that distinct part, but it is conservative.)
    			if opcodeTable[v.Op].needIntTemp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticinit/sched.go

    	// Merge adjacent constants in the argument list.
    	s := n.List
    	need := 0
    	for i := 0; i < len(s); i++ {
    		if i == 0 || !ir.IsConst(s[i-1], constant.String) || !ir.IsConst(s[i], constant.String) {
    			// Can't merge s[i] into s[i-1]; need a slot in the list.
    			need++
    		}
    	}
    	if need == len(s) {
    		return n
    	}
    	if need == 1 {
    		var strs []string
    		for _, c := range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/query.go

    		// If the version exists at all, we shouldn't need any extra information
    		// to identify which commit it resolves to.
    		//
    		// It may be associated with a Ref for a semantic-version tag, but if so
    		// we don't expect that tag to change in the future. We also don't need a
    		// TagSum: if a tag is removed from some ancestor commit, the version may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/dcl.go

    	autotmpnames   []string
    )
    
    // autotmpname returns the name for an autotmp variable numbered n.
    func autotmpname(n int) string {
    	autotmpnamesmu.Lock()
    	defer autotmpnamesmu.Unlock()
    
    	// Grow autotmpnames, if needed.
    	if n >= len(autotmpnames) {
    		autotmpnames = append(autotmpnames, make([]string, n+1-len(autotmpnames))...)
    		autotmpnames = autotmpnames[:cap(autotmpnames)]
    	}
    
    	s := autotmpnames[n]
    	if s == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:15:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/script.go

    		"USER=gopher",
    		homeEnvName() + "=" + homeDir,
    		"GIT_CONFIG_NOSYSTEM=1",
    		"HGRCPATH=" + filepath.Join(homeDir, ".hgrc"),
    		"HGENCODING=utf-8",
    	}
    	// Preserve additional environment variables that may be needed by VCS tools.
    	for _, k := range []string{
    		pathEnvName(),
    		tempEnvName(),
    		"SYSTEMROOT",        // must be preserved on Windows to find DLLs; golang.org/issue/25210
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testshared/testdata/issue25065/a.go

    //  2. not called
    //  3. not converted to an interface
    //  4. is a value method but the reference is to the pointer method
    //
    // These cases avoid the call to makefuncsym from typecheckfunc, but we
    // still need to call makefuncsym somehow or the symbol will not be defined.
    package issue25065
    
    type T int
    
    func (t T) M() {}
    
    func F() func(*T) {
    	return (*T).M
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 619 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/sizes_test.go

    		_ = conf.Sizes.Sizeof(tv.Type)
    		_ = conf.Sizes.Alignof(tv.Type)
    	}
    }
    
    // go.dev/issue/53884.
    func TestAtomicAlign(t *testing.T) {
    	testenv.MustHaveGoBuild(t) // The Go command is needed for the importer to determine the locations of stdlib .a files.
    
    	const src = `
    package main
    
    import "sync/atomic"
    
    var s struct {
    	x int32
    	y atomic.Int64
    	z int64
    }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/buildid.go

    //
    // During the build, when it's time to build main.a, the gofmt binary has the
    // information needed to decide whether the eventual link would produce
    // the same binary: if the action ID for main.a's inputs matches and then
    // the action ID for the link step matches when assuming the given main.a
    // content ID, then the binary as a whole is up-to-date and need not be rebuilt.
    //
    // This is all a bit complex and may be simplified once we can rely on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring.go

    			}
    			// If the type parameter name is the same as a predeclared object
    			// (say int), point out where it is declared to avoid confusing
    			// error messages. This doesn't need to be super-elegant; we just
    			// need a clear indication that this is not a predeclared name.
    			if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
    				if isTypes2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top