Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for content_es (0.14 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    		}
    	}
    }
    
    type dumpReader struct {
    	s  *bufio.Scanner
    	t  *testing.T
    	p  string
    	ln int
    }
    
    // readDump reads in the contents of a dump file produced
    // by the "-d=dumpinlfuncprops=..." command line flag by the Go
    // compiler. It breaks the dump down into separate sections
    // by function, then deserializes each func section into a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/embed/embed.go

    //
    // Go source files that import "embed" can use the //go:embed directive
    // to initialize a variable of type string, []byte, or [FS] with the contents of
    // files read from the package directory or subdirectories at compile time.
    //
    // For example, here are three ways to embed a file named hello.txt
    // and then print its contents at run time.
    //
    // Embedding one file into a string:
    //
    //	import _ "embed"
    //
    //	//go:embed hello.txt
    //	var s string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/README

    	expected data.
    	The command succeeds if the file contents are identical.
    	File1 can be 'stdout' or 'stderr' to compare the stdout or
    	stderr buffer from the most recent command.
    
    cmpenv [-q] file1 file2
    	compare files for differences, with environment expansion
    
    	By convention, file1 is the actual data and file2 is the
    	expected data.
    	The command succeeds if the file contents are identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/crypto/cipher/gcm.go

    	//
    	// To reuse ciphertext's storage for the decrypted output, use ciphertext[:0]
    	// as dst. Otherwise, the remaining capacity of dst must not overlap plaintext.
    	//
    	// Even if the function fails, the contents of dst, up to its capacity,
    	// may be overwritten.
    	Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error)
    }
    
    // gcmAble is an interface implemented by ciphers that have a specific optimized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    // go run mksysnum.go /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/sys/syscall.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && darwin
    
    package unix
    
    // Deprecated: Use libSystem wrappers instead of direct syscalls.
    const (
    	SYS_SYSCALL                        = 0
    	SYS_EXIT                           = 1
    	SYS_FORK                           = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cache/cache.go

    	"cmd/go/internal/mmap"
    )
    
    // An ActionID is a cache action key, the hash of a complete description of a
    // repeatable computation (command line, environment variables,
    // input file contents, executable contents).
    type ActionID [HashSize]byte
    
    // An OutputID is a cache output key, the hash of an output of a computation.
    type OutputID [HashSize]byte
    
    // Cache is the interface as used by the cmd/go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/runtime/heapdump.go

    	n++
    	dwrite(unsafe.Pointer(&buf), uintptr(n))
    }
    
    func dumpbool(b bool) {
    	if b {
    		dumpint(1)
    	} else {
    		dumpint(0)
    	}
    }
    
    // dump varint uint64 length followed by memory contents.
    func dumpmemrange(data unsafe.Pointer, len uintptr) {
    	dumpint(uint64(len))
    	dwrite(data, len)
    }
    
    func dumpslice(b []byte) {
    	dumpint(uint64(len(b)))
    	if len(b) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/stackalloc.go

    			// invariant: s contains the values live at the start of b (excluding phi inputs)
    			for i, e := range b.Preds {
    				p := e.b
    				t.clear()
    				t.addAll(s.live[p.ID])
    				t.addAll(live.contents())
    				t.addAll(spillLive[p.ID])
    				for _, v := range phis {
    					a := v.Args[i]
    					if s.values[a.ID].needSlot {
    						t.add(a.ID)
    					}
    					if spill := s.values[a.ID].spill; spill != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/cshared_test.go

    		if filepath.Ext(dlltoolpath) == "" {
    			// This is an unfortunate workaround for
    			// https://github.com/mstorsjo/llvm-mingw/issues/205 in which
    			// we basically reimplement the contents of the dlltool.sh
    			// wrapper: https://git.io/JZFlU.
    			// TODO(thanm): remove this workaround once we can upgrade
    			// the compilers on the windows-arm64 builder.
    			dlltoolContents, err := os.ReadFile(args[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    ordinary Go string value. The string length, and a pointer to the
    string contents, may be accessed by calling the C functions
    
    	size_t _GoStringLen(_GoString_ s);
    	const char *_GoStringPtr(_GoString_ s);
    
    These functions are only available in the preamble, not in other C
    files. The C code must not modify the contents of the pointer returned
    by _GoStringPtr. Note that the string contents may not have a trailing
    NUL byte.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top