Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 181 for content_es (0.11 sec)

  1. src/cmd/link/internal/ld/macho_combine_dwarf.go

    			return nil, nil, err
    		}
    
    		compressed, contents, err := machoCompressSection(data)
    		if err != nil {
    			return nil, nil, err
    		}
    
    		newSec := *sect
    		newSec.Offset = uint32(dwarfseg.Offset) + uint32(buf.Len())
    		newSec.Addr = dwarfseg.Addr + uint64(buf.Len())
    		if compressed {
    			newSec.Name = "__z" + sect.Name[2:]
    			newSec.Size = uint64(len(contents))
    		}
    		sects = append(sects, &newSec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_test.go

    	}
    
    	return flows, nil
    }
    
    // tempFile creates a temp file containing contents and returns its path.
    func tempFile(contents string) string {
    	file, err := os.CreateTemp("", "go-tls-test")
    	if err != nil {
    		panic("failed to create temp file: " + err.Error())
    	}
    	path := file.Name()
    	file.WriteString(contents)
    	file.Close()
    	return path
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. src/runtime/env_plan9.go

    	// offset of the name field in a 9P directory entry - see syscall.UnmarshalDir()
    	nameOffset = 39
    )
    
    // goenvs caches the Plan 9 environment variables at start of execution into
    // string array envs, to supply the initial contents for os.Environ.
    // Subsequent calls to os.Setenv will change this cache, without writing back
    // to the (possibly shared) Plan 9 environment, so that Setenv and Getenv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. src/net/http/transfer.go

    			}
    		}
    
    		// deduplicate Content-Length
    		header.Del("Content-Length")
    		header.Add("Content-Length", first)
    
    		contentLens = header["Content-Length"]
    	}
    
    	// Reject requests with invalid Content-Length headers.
    	if len(contentLens) > 0 {
    		n, err = parseContentLength(contentLens)
    		if err != nil {
    			return -1, err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. src/crypto/tls/prf.go

    	return h.client.Sum(out)
    }
    
    // clientSum returns the contents of the verify_data member of a client's
    // Finished message.
    func (h finishedHash) clientSum(masterSecret []byte) []byte {
    	out := make([]byte, finishedVerifyLength)
    	h.prf(out, masterSecret, clientFinishedLabel, h.Sum())
    	return out
    }
    
    // serverSum returns the contents of the verify_data member of a server's
    // Finished message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/net/http/fs.go

    // includes it in a Last-Modified header in the response. If the
    // request includes an If-Modified-Since header, ServeContent uses
    // modtime to decide whether the content needs to be sent at all.
    //
    // The content's Seek method must work: ServeContent uses
    // a seek to the end of the content to determine its size.
    //
    // If the caller has set w's ETag header formatted per RFC 7232, section 2.3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/testing_coverage.txt

    # run outside the go command.
    go test -c -o t.exe -cover
    exec ./t.exe
    
    -- go.mod --
    module hello
    
    go 1.20
    -- hello.go --
    package hello
    
    func Hello() {
    	println("hello")
    }
    
    // contents not especially interesting, just need some code
    func foo(n int) int {
    	t := 0
    	for i := 0; i < n; i++ {
    		for j := 0; j < i; j++ {
    			t += i ^ j
    			if t == 1010101 {
    				break
    			}
    		}
    	}
    	return t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 941 bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c

    }
    
    #pragma GCC diagnostic ignored "-Wunknown-pragmas"
    #pragma GCC push_options
    #pragma GCC target("xsave")
    #pragma clang attribute push (__attribute__((target("xsave"))), apply_to=function)
    
    // xgetbv reads the contents of an XCR (Extended Control Register)
    // specified in the ECX register into registers EDX:EAX.
    // Currently, the only supported value for XCR is 0.
    void
    gccgoXgetbv(uint32_t *eax, uint32_t *edx)
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_sum_issue56222.txt

    go list -f '{{if eq .ImportPath "example.com/generics"}}{{.Module.GoVersion}}{{end}}' -deps -test example.com/m2/q
    stdout 1.18
    
    
    # At go 1.20 or earlier, 'go mod tidy' should preserve the historical go.sum
    # contents, but 'go test' should flag the missing checksums (instead of trying
    # to build the test dependency with the wrong language version).
    
    go mod tidy -go=1.20
    ! go test -o $devnull -c all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 13:58:58 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    	overwrite bool                                   // if true, overwrite go.sum without incorporating its contents
    	enabled   bool                                   // whether to use go.sum at all
    }
    
    type modSumStatus struct {
    	used, dirty bool
    }
    
    // Reset resets globals in the modfetch package, so previous loads don't affect
    // contents of go.sum files.
    func Reset() {
    	GoSumFile = ""
    	WorkspaceGoSumFiles = nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top