Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 73 of 73 for purego (0.5 sec)

  1. src/image/image.go

    // format's package so that, to decode a PNG image, it suffices to have
    //
    //	import _ "image/png"
    //
    // in a program's main package. The _ means to import a package purely for its
    // initialization side effects.
    //
    // See "The Go image package" for more details:
    // https://golang.org/doc/articles/image_package.html
    //
    // # Security Considerations
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  2. src/path/filepath/path_test.go

    	{"/a/b/c/d", "/a/b/", "../.."},
    	{"/a/b/c/d/", "/a/b", "../.."},
    	{"/a/b/c/d/", "/a/b/", "../.."},
    	{"/../../a/b", "/../../a/b/c/d", "c/d"},
    	{".", "a/b", "a/b"},
    	{".", "..", ".."},
    
    	// can't do purely lexically
    	{"..", ".", "err"},
    	{"..", "a", "err"},
    	{"../..", "..", "err"},
    	{"a", "/a", "err"},
    	{"/a", "a", "err"},
    }
    
    var winreltests = []RelTests{
    	{`C:a\b\c`, `C:a/b/d`, `..\d`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. src/regexp/regexp.go

    // [Regexp.FindSubmatchIndex].
    //
    // In the template, a variable is denoted by a substring of the form
    // $name or ${name}, where name is a non-empty sequence of letters,
    // digits, and underscores. A purely numeric name like $1 refers to
    // the submatch with the corresponding index; other names refer to
    // capturing parentheses named with the (?P<name>...) syntax. A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top