Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Secured (0.22 sec)

  1. src/archive/tar/reader_test.go

    		"../foo",
    		"/foo",
    		"a/b/../../../c",
    	} {
    		var buf bytes.Buffer
    		tw := NewWriter(&buf)
    		tw.WriteHeader(&Header{
    			Name: path,
    		})
    		const securePath = "secure"
    		tw.WriteHeader(&Header{
    			Name: securePath,
    		})
    		tw.Close()
    
    		tr := NewReader(&buf)
    		h, err := tr.Next()
    		if err != ErrInsecurePath {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg net/http, type Cookie struct, Name string
    pkg net/http, type Cookie struct, Path string
    pkg net/http, type Cookie struct, Raw string
    pkg net/http, type Cookie struct, RawExpires string
    pkg net/http, type Cookie struct, Secure bool
    pkg net/http, type Cookie struct, Unparsed []string
    pkg net/http, type Cookie struct, Value string
    pkg net/http, type CookieJar interface { Cookies, SetCookies }
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top