Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for fi (0.1 sec)

  1. src/cmd/link/internal/ld/elf_test.go

    	if out, err := cmd.CombinedOutput(); err != nil {
    		t.Fatalf("%v: %v:\n%s", cmd.Args, err, out)
    	}
    
    	fi, err := os.Open(binFile)
    	if err != nil {
    		t.Fatalf("failed to open built file: %v", err)
    	}
    	defer fi.Close()
    
    	elfFile, err := elf.NewFile(fi)
    	if err != nil {
    		t.Skip("The system may not support ELF, skipped.")
    	}
    
    	section := elfFile.Section(".dynsym")
    	if section == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    			default:
    				u.logger.Printf("Collecting count file %s", fi.Name())
    				ans.countfiles = append(ans.countfiles, fname)
    			}
    		} else if strings.HasPrefix(fi.Name(), "local.") {
    			// skip
    		} else if strings.HasSuffix(fi.Name(), ".json") && mode == "on" {
    			// Collect reports that are ready for upload.
    			reportDate := u.uploadReportDate(fi.Name())
    			if !asof.IsZero() && !reportDate.IsZero() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/shell.go

    	// Do not remove/overwrite if dst exists and is a directory
    	// or a non-empty non-object file.
    	if fi, err := os.Stat(dst); err == nil {
    		if fi.IsDir() {
    			return fmt.Errorf("build output %q already exists and is a directory", dst)
    		}
    		if !force && fi.Mode().IsRegular() && fi.Size() != 0 && !isObject(dst) {
    			return fmt.Errorf("build output %q already exists and is not an object file", dst)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/archive/tar/common.go

    	h *Header
    }
    
    func (fi headerFileInfo) Size() int64        { return fi.h.Size }
    func (fi headerFileInfo) IsDir() bool        { return fi.Mode().IsDir() }
    func (fi headerFileInfo) ModTime() time.Time { return fi.h.ModTime }
    func (fi headerFileInfo) Sys() any           { return fi.h }
    
    // Name returns the base name of the file.
    func (fi headerFileInfo) Name() string {
    	if fi.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    // just before the body of the inlined function.
    func (fi *FuncInfo) AddInlMark(p *Prog, id int32) {
    	fi.InlMarks = append(fi.InlMarks, InlMark{p: p, id: id})
    }
    
    // AddSpill appends a spill record to the list for FuncInfo fi
    func (fi *FuncInfo) AddSpill(s RegSpill) {
    	fi.spills = append(fi.spills, s)
    }
    
    // Record the type symbol for an auto variable so that the linker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/archive/tar/stat_unix.go

    // The downside is that renaming uname or gname by the OS never takes effect.
    var userMap, groupMap sync.Map // map[int]string
    
    func statUnix(fi fs.FileInfo, h *Header, doNameLookups bool) error {
    	sys, ok := fi.Sys().(*syscall.Stat_t)
    	if !ok {
    		return nil
    	}
    	h.Uid = int(sys.Uid)
    	h.Gid = int(sys.Gid)
    	if doNameLookups {
    		// Best effort at populating Uname and Gname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys.go

    	}
    
    	var firstErr error
    	for _, fi := range fis {
    		if fi.IsDir() {
    			continue
    		}
    
    		// TODO(matloob): this enforces that the "from" in the map
    		// has a .go suffix, but the actual destination file
    		// doesn't need to have a .go suffix. Is this okay with the
    		// compiler?
    		if !strings.HasSuffix(fi.Name(), ".go") {
    			continue
    		}
    		if fi.Mode().IsRegular() {
    			return true, nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check_test.go

    	dir = filepath.FromSlash(dir)
    
    	fis, err := os.ReadDir(dir)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    
    	for _, fi := range fis {
    		path := filepath.Join(dir, fi.Name())
    
    		// If fi is a directory, its files make up a single package.
    		if fi.IsDir() {
    			testDir(t, path, colDelta, manual)
    		} else {
    			t.Run(filepath.Base(path), func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/compile.go

    	}
    
    	fi, err := os.Create(fname)
    	if err != nil {
    		f.Warnl(src.NoXPos, "Unable to create after-phase dump file %s", fname)
    		return nil
    	}
    	return fi
    }
    
    // dumpFile creates a file from the phase name and function name
    // Dumping is done to files to avoid buffering huge strings before
    // output.
    func (f *Func) dumpFile(phaseName string) {
    	fi := f.DumpFileForPhase(phaseName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    	exit 1
    fi
    
    # Check that we are using the new build system if we should
    if [[ "$GOOS" = "linux" ]] && [[ "$GOLANG_SYS_BUILD" != "docker" ]]; then
    	echo 1>&2 "In the Docker based build system, mkerrors should not be called directly."
    	echo 1>&2 "See README.md"
    	exit 1
    fi
    
    if [[ "$GOOS" = "aix" ]]; then
    	CC=${CC:-gcc}
    else
    	CC=${CC:-cc}
    fi
    
    if [[ "$GOOS" = "solaris" ]]; then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top