Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 117 for content_es (0.11 sec)

  1. src/net/http/h2_bundle.go

    	trailers, err := http2commaSeparatedTrailers(req)
    	if err != nil {
    		return err
    	}
    	hasTrailers := trailers != ""
    	contentLen := http2actualContentLength(req)
    	hasBody := contentLen != 0
    	hdrs, err := cc.encodeHeaders(req, cs.requestedGzip, trailers, contentLen)
    	if err != nil {
    		return err
    	}
    
    	// Write the request.
    	endStream := !hasBody && !hasTrailers
    	cs.sentHeaders = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf_test.go

    	}
    }
    
    func TestIssue39757(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    
    	t.Parallel()
    
    	// In this bug the DWARF line table contents for the last couple of
    	// instructions in a function were incorrect (bad file/line). This
    	// test verifies that all of the line table rows for a function
    	// of interest have the same file (no "autogenerated").
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	}
    	if excluded(okgoos, goos) || excluded(okgoarch, goarch) {
    		return false
    	}
    
    	// Omit test files.
    	if strings.Contains(name, "_test") {
    		return false
    	}
    
    	// Check file contents for //go:build lines.
    	for _, p := range strings.Split(readfile(file), "\n") {
    		p = strings.TrimSpace(p)
    		if p == "" {
    			continue
    		}
    		code := p
    		i := strings.Index(code, "//")
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    				// Don't type-check right away because the function may
    				// be part of a type definition to which the function
    				// body refers. Instead, type-check as soon as possible,
    				// but before the enclosing scope contents changes (go.dev/issue/22992).
    				check.later(func() {
    					check.funcBody(decl, "<function literal>", sig, e.Body, iota)
    				}).describef(e, "func literal")
    			}
    			x.mode = value
    			x.typ = sig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		go func() {
    			defer wg.Done()
    
    			contentLen := fmt.Sprintf("Content-Length: %d", test.contentLength)
    			if test.chunked {
    				contentLen = "Transfer-Encoding: chunked"
    			}
    			_, err := fmt.Fprintf(conn, "POST /?readbody=%v HTTP/1.1\r\n"+
    				"Connection: close\r\n"+
    				"%s\r\n"+
    				"Expect: %s\r\nHost: foo\r\n\r\n",
    				test.readBody, contentLen, test.expectation)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    	for _, e := range extensions {
    		if e.Id.Equal(oid) {
    			return true
    		}
    	}
    	return false
    }
    
    // marshalSANs marshals a list of addresses into a the contents of an X.509
    // SubjectAlternativeName extension.
    func marshalSANs(dnsNames, emailAddresses []string, ipAddresses []net.IP, uris []*url.URL) (derBytes []byte, err error) {
    	var rawValues []asn1.RawValue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // the hash digest instead of creating a new one for a given chunk and finalizing it.
    //
    //	// Assume hashfd and addr are already configured using the setup process.
    //	hash := os.NewFile(hashfd, "sha1")
    //	// Hash the contents of a file.
    //	f, _ := os.Open("/tmp/linux-4.10-rc7.tar.xz")
    //	b := make([]byte, 4096)
    //	for {
    //	    n, err := f.Read(b)
    //	    if err == io.EOF {
    //	        break
    //	    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. src/os/read_test.go

    	t.Parallel()
    
    	filename := "rumpelstilzchen"
    	contents, err := ReadFile(filename)
    	if err == nil {
    		t.Fatalf("ReadFile %s: error expected, none found", filename)
    	}
    
    	filename = "read_test.go"
    	contents, err = ReadFile(filename)
    	if err != nil {
    		t.Fatalf("ReadFile %s: %v", filename, err)
    	}
    
    	checkNamedSize(t, filename, int64(len(contents)))
    }
    
    func TestWriteFile(t *testing.T) {
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 02:36:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/os/dir.go

    	"internal/filepathlite"
    	"io"
    	"io/fs"
    	"slices"
    )
    
    type readdirMode int
    
    const (
    	readdirName readdirMode = iota
    	readdirDirEntry
    	readdirFileInfo
    )
    
    // Readdir reads the contents of the directory associated with file and
    // returns a slice of up to n [FileInfo] values, as would be returned
    // by [Lstat], in directory order. Subsequent calls on the same file will yield
    // further FileInfos.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/net/sendfile_linux.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"internal/poll"
    	"io"
    	"os"
    )
    
    const supportsSendfile = true
    
    // sendFile copies the contents of r to c using the sendfile
    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number (potentially zero) of bytes
    // copied and any non-EOF error.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top