Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for content_es (0.12 sec)

  1. src/net/sendfile_windows.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"internal/poll"
    	"io"
    	"os"
    	"syscall"
    )
    
    const supportsSendfile = true
    
    // sendFile copies the contents of r to c using the TransmitFile
    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number of bytes copied and any
    // non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    # upgrades.
    
    
    ! go install -cake=delicious -modcacherw example.com/printversion@v0.1.0
    stderr '^flag provided but not defined: -cake$'
    	# Because the -modcacherw flag was set, we should be able to modify the contents
    	# of a directory within the module cache.
    cp $WORK/extraneous.txt $GOPATH/pkg/mod/example.com/printversion@v0.1.0/extraneous_file.go
    go clean -modcache
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/cover/cfg_test.go

    import (
    	"cmd/internal/cov/covcmd"
    	"encoding/json"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func writeFile(t *testing.T, path string, contents []byte) {
    	if err := os.WriteFile(path, contents, 0666); err != nil {
    		t.Fatalf("os.WriteFile(%s) failed: %v", path, err)
    	}
    }
    
    func writePkgConfig(t *testing.T, outdir, tag, ppath, pname string, gran string, mpath string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    handle svn
    
    # Note: this repo script does not produce a byte-for-byte copy of the original.
    #
    # The 'git init' operation in the nested Git repo creates some sample files
    # whose contents depend on the exact Git version in use, and the steps we take
    # to construct a fake 'git clone' status don't produce some log files that
    # a real 'git clone' leaves behind.
    #
    # However, the repo is probably accurate enough for the tests that need it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/ar.go

    	arModeOff  = arGIDOff + arGIDSize
    	arModeSize = 8
    	arSizeOff  = arModeOff + arModeSize
    	arSizeSize = 10
    	arFmagOff  = arSizeOff + arSizeSize
    	arFmagSize = 2
    
    	arHdrSize = arFmagOff + arFmagSize
    )
    
    // The contents of the fmag field of a standard archive header.
    const arfmag = "`\n"
    
    // arExportData takes an archive file and returns a ReadSeeker for the
    // export data in that file. This assumes that there is only one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    		osSupportsAVX = isSet(1, eax) && isSet(2, eax)
    
    		if runtime.GOOS == "darwin" {
    			// Darwin doesn't save/restore AVX-512 mask registers correctly across signal handlers.
    			// Since users can't rely on mask register contents, let's not advertise AVX-512 support.
    			// See issue 49233.
    			osSupportsAVX512 = false
    		} else {
    			// Check if OPMASK and ZMM registers have OS support.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    handle svn
    
    # Note: this repo script does not produce a byte-for-byte copy of the original.
    #
    # The 'git init' operation in the nested Git repo creates some sample files
    # whose contents depend on the exact Git version in use, and the steps we take
    # to construct a fake 'git clone' status don't produce some log files that
    # a real 'git clone' leaves behind.
    #
    # However, the repo is probably accurate enough for the tests that need it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. src/hash/crc64/crc64.go

    	slicing8TableISO = makeSlicingBy8Table(makeTable(ISO))
    	slicing8TableECMA = makeSlicingBy8Table(makeTable(ECMA))
    }
    
    // MakeTable returns a [Table] constructed from the specified polynomial.
    // The contents of this [Table] must not be modified.
    func MakeTable(poly uint64) *Table {
    	buildSlicing8TablesOnce()
    	switch poly {
    	case ISO:
    		return &slicing8TableISO[0]
    	case ECMA:
    		return &slicing8TableECMA[0]
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/net/http/fcgi/fcgi.go

    	}
    	br.role = binary.BigEndian.Uint16(content)
    	br.flags = content[2]
    	return nil
    }
    
    // for padding so we don't have to allocate all the time
    // not synchronized because we don't care what the contents are
    var pad [maxPad]byte
    
    func (h *header) init(recType recType, reqId uint16, contentLength int) {
    	h.Version = 1
    	h.Type = recType
    	h.Id = reqId
    	h.ContentLength = uint16(contentLength)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_cache_inputs.txt

    stdout '\(cached\)'
    cp 2y.txt testcache/file.txt
    exec ./mkold$GOEXE 50s testcache/file.txt
    go test testcache -run=FileContent
    ! stdout '\(cached\)'
    go test testcache -run=FileContent
    stdout '\(cached\)'
    
    # Directory contents read via os.ReadDirNames should affect caching.
    go test testcache -run=DirList
    go test testcache -run=DirList
    stdout '\(cached\)'
    rm testcache/file.txt
    go test testcache -run=DirList
    ! stdout '\(cached\)'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top