Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for content_es (1.41 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			if doc.Links[key] != nil {
    				return nil, fmt.Errorf("duplicate link reference %q; second in %s", key, filename)
    			}
    			doc.Links[key] = link
    		}
    	}
    	// Remove headings with empty contents.
    	doc.Blocks = removeEmptySections(doc.Blocks)
    	if len(doc.Blocks) > 0 && len(doc.Links) > 0 {
    		// Add a blank line to separate the links.
    		lastPos := lastBlock(doc).Pos()
    		lastPos.StartLine += 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    		http.Error(w, err.Error(), http.StatusBadRequest)
    		ui.options.UI.PrintErr(err)
    		return nil, nil
    	}
    	return rpt, catcher.errors
    }
    
    // renderHTML generates html using the named template based on the contents of data.
    func renderHTML(dst io.Writer, tmpl string, rpt *report.Report, errList, legend []string, data webArgs) error {
    	file := getFromLegend(legend, "File: ", "unknown")
    	profile := getFromLegend(legend, "Type: ", "unknown")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    Similarly, the IgnoredFiles field provides the names of Go and non-Go
    source files that are not part of this package with the current build
    configuration but may be part of other build configurations.
    The contents of these files may be read using Pass.ReadFile;
    see the "asmdecl" or "buildtags" analyzers for examples of loading
    non-Go files and reporting diagnostics against them.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/runtime/string.go

    	return s[:n]
    }
    
    // rawstring allocates storage for a new string. The returned
    // string and byte slice both refer to the same storage.
    // The storage is not zeroed. Callers should use
    // b to set the string contents and then drop b.
    func rawstring(size int) (s string, b []byte) {
    	p := mallocgc(uintptr(size), nil, false)
    	return unsafe.String((*byte)(p), size), unsafe.Slice((*byte)(p), size)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/runtime/HACKING.md

    code, such as scheduler and memory allocator state. It's represented
    by type `p`. There are exactly `GOMAXPROCS` Ps. A P can be thought of
    like a CPU in the OS scheduler and the contents of the `p` type like
    per-CPU state. This is a good place to put state that needs to be
    sharded for efficiency, but doesn't need to be per-thread or
    per-goroutine.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/image/jpeg/huffman.go

    	x := int32(d.bits.a>>uint8(d.bits.n)) & (s - 1)
    	if x < s>>1 {
    		x += ((-1) << t) + 1
    	}
    	return x, nil
    }
    
    // processDHT processes a Define Huffman Table marker, and initializes a huffman
    // struct from its contents. Specified in section B.2.4.2.
    func (d *decoder) processDHT(n int) error {
    	for n > 0 {
    		if n < 17 {
    			return FormatError("DHT has wrong length")
    		}
    		if err := d.readFull(d.tmp[:17]); err != nil {
    			return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		s.NumUnit[k] = uu
    	}
    	copy(s.Value, src.Value)
    	pm.samples[k] = s
    	pm.p.Sample = append(pm.p.Sample, s)
    	return s
    }
    
    func (pm *profileMerger) sampleKey(sample *Sample) sampleKey {
    	// Accumulate contents into a string.
    	var buf strings.Builder
    	buf.Grow(64) // Heuristic to avoid extra allocs
    
    	// encode a number
    	putNumber := func(v uint64) {
    		var num [binary.MaxVarintLen64]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. src/cmd/go/scriptreadme_test.go

    (aka $WORK/gopath/src) and then the script begins execution in that directory as
    well. Thus the example above runs in $WORK/gopath/src with GOPATH=$WORK/gopath
    and $WORK/gopath/src/hello.go containing the listed contents.
    
    {{.Language}}
    
    When TestScript runs a script and the script fails, by default TestScript shows
    the execution of the most recent phase of the script (since the last # comment)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/crypto/tls/auth.go

    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rsa"
    	"errors"
    	"fmt"
    	"hash"
    	"io"
    )
    
    // verifyHandshakeSignature verifies a signature against pre-hashed
    // (if required) handshake contents.
    func verifyHandshakeSignature(sigType uint8, pubkey crypto.PublicKey, hashFunc crypto.Hash, signed, sig []byte) error {
    	switch sigType {
    	case signatureECDSA:
    		pubKey, ok := pubkey.(*ecdsa.PublicKey)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top