Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Classify (0.81 sec)

  1. src/os/exec/exec.go

    	"internal/godebug"
    	"internal/syscall/execenv"
    	"io"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    	"syscall"
    	"time"
    )
    
    // Error is returned by [LookPath] when it fails to classify a file as an
    // executable.
    type Error struct {
    	// Name is the file name for which the error occurred.
    	Name string
    	// Err is the underlying error.
    	Err error
    }
    
    func (e *Error) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top