Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CheckFilePath (0.11 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    // (The excluded punctuation characters, " * < > ? ` ' | / \ and :,
    // have special meanings in certain shells or operating systems.)
    //
    // CheckFilePath may be less restrictive in the future, but see the
    // top-level package documentation for additional information about
    // subtleties of Unicode.
    func CheckFilePath(path string) error {
    	if err := checkPath(path, filePath); err != nil {
    		return &InvalidPathError{Kind: "file", Path: path, Err: err}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // version suffix consistent with the version (see
    // [golang.org/x/mod/module.Check]). The part of the file path after the
    // "<module>@<version>/" prefix must be valid (see
    // [golang.org/x/mod/module.CheckFilePath]).
    //
    // • No two file paths may be equal under Unicode case-folding (see
    // [strings.EqualFold]).
    //
    // • A go.mod file may or may not appear in the top-level directory. If present,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
Back to top