Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for original (0.13 sec)

  1. src/cmd/go/internal/work/exec.go

    	// But there might be an x.go in the original dir too, and if it
    	// uses cgo as well, cgo will be processing both and will
    	// translate both into x.cgo1.go in the objdir, overwriting one.
    	// Rename x.go to _x_swig.go to avoid this problem.
    	// We ignore files in the original dir that begin with underscore
    	// so _x_swig.go cannot conflict with an original file we were
    	// going to compile.
    	goFile = objdir + goFile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    // The output of String may vary across Go releases.
    func (c *Cmd) String() string {
    	if c.Err != nil || c.lookPathErr != nil {
    		// failed to resolve path; report the original requested path (plus args)
    		return strings.Join(c.Args, " ")
    	}
    	// report the exact executable path (plus args)
    	b := new(strings.Builder)
    	b.WriteString(c.Path)
    	for _, a := range c.Args[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys.go

    			} else if fi.IsDir() {
    				return nil, &fs.PathError{Op: "Stat", Path: filepath.Join(dir, name), Err: nonFileInOverlayError(to.actualFilePath)}
    			}
    			// Add a fileinfo for the overlaid file, so that it has
    			// the original file's name, but the overlaid file's metadata.
    			files[name] = fakeFile{name, fi}
    		}
    	}
    	sortedFiles := diskfis[:0]
    	for _, f := range files {
    		sortedFiles = append(sortedFiles, f)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    		return true
    	}
    	sym := f.fe.Func().Sym()
    	return base.DebugHashMatchPkgFunc(sym.Pkg.Path, sym.Name)
    }
    
    func (f *Func) spSb() (sp, sb *Value) {
    	initpos := src.NoXPos // These are originally created with no position in ssa.go; if they are optimized out then recreated, should be the same.
    	for _, v := range f.Entry.Values {
    		if v.Op == OpSB {
    			sb = v
    		}
    		if v.Op == OpSP {
    			sp = v
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    			if !strings.HasPrefix(sname, "__imp_") {
    				return fmt.Errorf("internal error in windynrelocsym: redirect GOT token applied to non-import symbol %s", sname)
    			}
    
    			// Locate underlying symbol (which originally had type
    			// SDYNIMPORT but has since been retyped to SWINDOWS).
    			ds, err := loadpe.LookupBaseFromImport(targ, ctxt.loader, ctxt.Arch)
    			if err != nil {
    				return err
    			}
    			dstyp := ctxt.loader.SymType(ds)
    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