Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 215 for original (0.23 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	if trimPath == "" {
    		// If the trim path is not configured, try to guess it heuristically:
    		// search for basename of each search path in the original path and, if
    		// found, strip everything up to and including the basename. So, for
    		// example, given original path "/some/remote/path/my-project/foo/bar.c"
    		// and search path "/my/local/path/my-project" the heuristic will return
    		// "/my/local/path/my-project/foo/bar.c".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. src/crypto/tls/quic.go

    		return nil
    	}
    	var ae AlertError
    	if errors.As(err, &ae) {
    		return err
    	}
    	var a alert
    	if !errors.As(err, &a) {
    		a = alertInternalError
    	}
    	// Return an error wrapping the original error and an AlertError.
    	// Truncate the text of the alert to 0 characters.
    	return fmt.Errorf("%w%.0w", err, AlertError(a))
    }
    
    func (c *Conn) quicReadHandshakeBytes(n int) error {
    	for c.hand.Len() < n {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/doc.go

    This document provides information on how to write code in Go assembler
    for PPC64, focusing on the differences between Go and PPC64 assembly language.
    It assumes some knowledge of PPC64 assembler. The original implementation of
    PPC64 in Go defined many opcodes that are different from PPC64 opcodes, but
    updates to the Go assembly language used mnemonics that are mostly similar if not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	FormatTag         func(int64, string) string // Function to format a sample tag value into a string
    	ObjNames          bool                       // Always preserve obj filename
    	OrigFnNames       bool                       // Preserve original (eg mangled) function names
    
    	CallTree     bool // Build a tree instead of a graph
    	DropNegative bool // Drop nodes with overall negative values
    
    	KeptNodes NodeSet // If non-nil, only use nodes in this set
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. src/fmt/print.go

    // itself contain the verb.) The result has a leading percent sign followed by any
    // flags, the width, and the precision. Missing flags, width, and precision are
    // omitted. This function allows a [Formatter] to reconstruct the original
    // directive triggering the call to Format.
    func FormatString(state State, verb rune) string {
    	var tmp [16]byte // Use a local buffer.
    	b := append(tmp[:0], '%')
    	for _, c := range " +-#0" { // All known flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  6. src/runtime/mgcsweep.go

    			atomic.Xadd64(&stats.largeFree, int64(size))
    			memstats.heapStats.release()
    
    			// Count the free in the inconsistent, internal stats.
    			gcController.totalFree.Add(int64(size))
    
    			// NOTE(rsc,dvyukov): The original implementation of efence
    			// in CL 22060046 used sysFree instead of sysFault, so that
    			// the operating system would eventually give the memory
    			// back to us again, so that an efence program could run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. src/math/big/nat.go

    	}
    
    	// p = (x1-x0)*(y0-y1) == x1*y0 - x1*y1 - x0*y0 + x0*y1 for s > 0
    	// p = (x0-x1)*(y0-y1) == x0*y0 - x0*y1 - x1*y0 + x1*y1 for s < 0
    	p := z[n*3:]
    	karatsuba(p, xd, yd)
    
    	// save original z2:z0
    	// (ok to use upper half of z since we're done recurring)
    	r := z[n*4:]
    	copy(r, z[:n*2])
    
    	// add up all partial products
    	//
    	//   2*n     n     0
    	// z = [ z2  | z0  ]
    	//   +    [ z0  ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/repo.go

    	ModulePath() string
    
    	// CheckReuse checks whether the validation criteria in the origin
    	// are still satisfied on the server corresponding to this module.
    	// If so, the caller can reuse any cached Versions or RevInfo containing
    	// this origin rather than redownloading those from the server.
    	CheckReuse(ctx context.Context, old *codehost.Origin) error
    
    	// Versions lists all known versions with the given prefix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. src/html/template/template.go

    // templates. The actual representation is not copied, but the name space of
    // associated templates is, so further calls to [Template.Parse] in the copy will add
    // templates to the copy but not to the original. [Template.Clone] can be used to prepare
    // common templates and use them with variant definitions for other templates
    // by adding the variants after the clone is made.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/math/big/float.go

    		// Below we set z.neg = x.neg, and when z aliases y this will
    		// change the y operand's sign. This is fine, because if an
    		// operand aliases the receiver it'll be overwritten, but we still
    		// want the original x.neg and y.neg values when we evaluate
    		// x.neg != y.neg, so we need to save y.neg before setting z.neg.
    		yneg := y.neg
    
    		z.neg = x.neg
    		if x.neg == yneg {
    			// x + y == x + y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top