Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for provider (0.26 sec)

  1. src/cmd/go/internal/fsys/fsys.go

    	for _, entry := range entries {
    		info, err := entry.Info()
    		if err != nil {
    			continue
    		}
    		fis = append(fis, info)
    	}
    	return fis, nil
    }
    
    // ReadDir provides a slice of fs.FileInfo entries corresponding
    // to the overlaid files in the directory.
    func ReadDir(dir string) ([]fs.FileInfo, error) {
    	Trace("ReadDir", dir)
    	dir = canonicalize(dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    		cmd.cachedLookExtensions = lp
    		if err != nil {
    			cmd.Err = err
    		}
    	}
    	return cmd
    }
    
    // CommandContext is like [Command] but includes a context.
    //
    // The provided context is used to interrupt the process
    // (by calling cmd.Cancel or [os.Process.Kill])
    // if the context becomes done before the command completes on its own.
    //
    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/compile/internal/ssa/func.go

    	v.Pos = pos
    	return v
    }
    
    // LogStat writes a string key and int value as a warning in a
    // tab-separated format easily handled by spreadsheets or awk.
    // file names, lines, and function names are included to provide enough (?)
    // context to allow item-by-item comparisons across runs.
    // For example:
    // awk 'BEGIN {FS="\t"} $3~/TIME/{sum+=$4} END{print "t(ns)=",sum}' t.log
    func (f *Func) LogStat(key string, args ...interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top