Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Palmer (1.04 sec)

  1. misc/wasm/go_wasip1_wasm_exec

    # license that can be found in the LICENSE file.
    
    case "$GOWASIRUNTIME" in
    	"wasmedge")
    		exec wasmedge --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
    		;;
    	"wasmer")
    		exec wasmer run --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
    		;;
    	"wazero")
    		exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 17:09:10 UTC 2024
    - 797 bytes
    - Viewed (0)
  2. src/database/sql/driver/types.go

    	ConvertValue(v any) (Value, error)
    }
    
    // Valuer is the interface providing the Value method.
    //
    // Errors returned by the [Value] method are wrapped by the database/sql package.
    // This allows callers to use [errors.Is] for precise error handling after operations
    // like [database/sql.Query], [database/sql.Exec], or [database/sql.QueryRow].
    //
    // Types implementing Valuer interface are able to convert
    // themselves to a driver [Value].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/encoding/ascii85/ascii85.go

    // NewEncoder returns a new ascii85 stream encoder. Data written to
    // the returned writer will be encoded and then written to w.
    // Ascii85 encodings operate in 32-bit blocks; when finished
    // writing, the caller must Close the returned encoder to flush any
    // trailing partial block.
    func NewEncoder(w io.Writer) io.WriteCloser { return &encoder{w: w} }
    
    type encoder struct {
    	err  error
    	w    io.Writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue9400/asm_riscv64.s

    //go:build riscv64 && gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024*8), X2
    
    	// Ask signaller to setgid
    	MOV	$1, X5
    	FENCE
    	MOVW	X5, ·Baton(SB)
    	FENCE
    
    	// Wait for setgid completion
    loop:
    	FENCE
    	MOVW	·Baton(SB), X5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 659 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/errors.go

    	if !p {
    		msg := "assertion failed"
    		// Include information about the assertion location. Due to panic recovery,
    		// this location is otherwise buried in the middle of the panicking stack.
    		if _, file, line, ok := runtime.Caller(1); ok {
    			msg = fmt.Sprintf("%s:%d: %s", file, line, msg)
    		}
    		panic(msg)
    	}
    }
    
    // An errorDesc describes part of a type-checking error.
    type errorDesc struct {
    	pos syntax.Pos
    	msg string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/internal/cov/readcovdata.go

    // 'verbosityLevel' controls the level of debugging trace messages
    // (zero for off, higher for more output), 'flags' stores flags that
    // indicate what to do if errors are detected, and 'matchpkg' is a
    // caller-provided function that can be used to select specific
    // packages by name (if nil, then all packages are included).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512.go

    	}
    	return
    }
    
    func (d *digest) Sum(in []byte) []byte {
    	if d.function != crypto.SHA512_224 && d.function != crypto.SHA512_256 {
    		boring.Unreachable()
    	}
    	// Make a copy of d so that caller can keep writing and summing.
    	d0 := new(digest)
    	*d0 = *d
    	hash := d0.checkSum()
    	switch d0.function {
    	case crypto.SHA384:
    		return append(in, hash[:Size384]...)
    	case crypto.SHA512_224:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/dcl.go

    )
    
    var funcStack []*ir.Func // stack of previous values of ir.CurFunc
    
    // DeclFunc declares the parameters for fn and adds it to
    // Target.Funcs.
    //
    // Before returning, it sets CurFunc to fn. When the caller is done
    // constructing fn, it must call FinishFuncBody to restore CurFunc.
    func DeclFunc(fn *ir.Func) {
    	fn.DeclareParams(true)
    	fn.Nname.Defn = fn
    	Target.Funcs = append(Target.Funcs, fn)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:15:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/internal/pgo/pprof.go

    	}
    
    	return &Profile{
    		TotalWeight:  totalWeight,
    		NamedEdgeMap: namedEdgeMap,
    	}, nil
    }
    
    // createNamedEdgeMap builds a map of callsite-callee edge weights from the
    // profile-graph.
    //
    // Caller should ignore the profile if totalWeight == 0.
    func createNamedEdgeMap(g *profile.Graph) (edgeMap NamedEdgeMap, totalWeight int64, err error) {
    	seenStartLine := false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    type StackSource struct {
    	FullName   string
    	FileName   string
    	UniqueName string // Disambiguates functions with same names
    	Inlined    bool   // If true this source was inlined into its caller
    
    	// Alternative names to display (with decreasing lengths) to make text fit.
    	// Guaranteed to be non-empty.
    	Display []string
    
    	// Places holds the list of stack slots where this source occurs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top