Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for secure (0.31 sec)

  1. src/bufio/bufio_test.go

    	w.Reset(&buf4)
    	w2 := NewWriter(w)
    	w2.WriteString("recur")
    	w2.Flush()
    	if buf4.String() != "recur" {
    		t.Errorf("buf4 = %q, want %q", buf4.String(), "recur")
    	}
    	w.Reset(&buf5)
    	w2.Reset(w)
    	w2.WriteString("recur2")
    	w2.Flush()
    	if buf5.String() != "recur2" {
    		t.Errorf("buf5 = %q, want %q", buf5.String(), "recur2")
    	}
    }
    
    func TestReaderDiscard(t *testing.T) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    func (f *File) walk(x interface{}, context astContext, visit func(*File, interface{}, astContext)) {
    	visit(f, x, context)
    	switch n := x.(type) {
    	case *ast.Expr:
    		f.walk(*n, context, visit)
    
    	// everything else just recurs
    	default:
    		f.walkUnexpected(x, context, visit)
    
    	case nil:
    
    	// These are ordered and grouped to match ../../go/ast/ast.go
    	case *ast.Field:
    		if len(n.Names) == 0 && context == ctxField {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SCA = 24583
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SCA ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECTRA = 34523
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECTRA ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECUREDATA = 34669
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECUREDATA ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. 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)
  5. doc/godebug.md

    -->
    
    ## Introduction {#intro}
    
    Go's emphasis on backwards compatibility is one of its key strengths.
    There are, however, times when we cannot maintain complete compatibility.
    If code depends on buggy (including insecure) behavior,
    then fixing the bug will break that code.
    New features can also have similar impacts:
    enabling the HTTP/2 use by the HTTP client broke programs
    connecting to servers with buggy HTTP/2 implementations.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    	ErrFieldTooLong    = errors.New("archive/tar: header field too long")
    	ErrWriteAfterClose = errors.New("archive/tar: write after close")
    	ErrInsecurePath    = errors.New("archive/tar: insecure file path")
    	errMissData        = errors.New("archive/tar: sparse file references non-existent data")
    	errUnrefData       = errors.New("archive/tar: sparse file contains unreferenced data")
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  7. 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 (2)
  8. api/go1.14.txt

    pkg crypto/tls, type CertificateRequestInfo struct, Version uint16
    pkg crypto/tls, type CipherSuite struct
    pkg crypto/tls, type CipherSuite struct, ID uint16
    pkg crypto/tls, type CipherSuite struct, Insecure bool
    pkg crypto/tls, type CipherSuite struct, Name string
    pkg crypto/tls, type CipherSuite struct, SupportedVersions []uint16
    pkg debug/dwarf, const AttrAddrBase = 115
    pkg debug/dwarf, const AttrAddrBase Attr
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  9. src/archive/zip/reader.go

    var (
    	ErrFormat       = errors.New("zip: not a valid zip file")
    	ErrAlgorithm    = errors.New("zip: unsupported compression algorithm")
    	ErrChecksum     = errors.New("zip: checksum error")
    	ErrInsecurePath = errors.New("zip: insecure file path")
    )
    
    // A Reader serves content from a ZIP archive.
    type Reader struct {
    	r             io.ReaderAt
    	File          []*File
    	Comment       string
    	decompressors map[uint16]Decompressor
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg syscall (netbsd-386), const ETHERTYPE_RETIX = 33010
    pkg syscall (netbsd-386), const ETHERTYPE_REVARP = 32821
    pkg syscall (netbsd-386), const ETHERTYPE_SCA = 24583
    pkg syscall (netbsd-386), const ETHERTYPE_SECTRA = 34523
    pkg syscall (netbsd-386), const ETHERTYPE_SECUREDATA = 34669
    pkg syscall (netbsd-386), const ETHERTYPE_SGITW = 33150
    pkg syscall (netbsd-386), const ETHERTYPE_SG_BOUNCE = 32790
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top