Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,202 for tcCall (0.45 sec)

  1. src/cmd/internal/obj/wasm/a.out.go

    	ANop
    	ABlock
    	ALoop
    	AIf
    	AElse
    
    	AEnd // opcode 0x0B
    	ABr
    	ABrIf
    	ABrTable
    	// ACall and AReturn are WebAssembly instructions. obj.ACALL and obj.ARET are higher level instructions
    	// with Go semantics, e.g. they manipulate the Go stack on the linear memory.
    	AReturn
    	ACall
    	ACallIndirect
    
    	ADrop // opcode 0x1A
    	ASelect
    
    	ALocalGet // opcode 0x20
    	ALocalSet
    	ALocalTee
    	AGlobalGet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_sampler_v1.99.99.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  3. src/syscall/asm_linux_riscv64.s

    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOV	a1+8(FP), A0
    	MOV	a2+16(FP), A1
    	MOV	a3+24(FP), A2
    	MOV	ZERO, A3
    	MOV	ZERO, A4
    	MOV	ZERO, A5
    	MOV	trap+0(FP), A7	// syscall entry
    	ECALL
    	MOV	$-4096, T0
    	BLTU	T0, A0, err
    	MOV	A0, r1+32(FP)	// r1
    	MOV	ZERO, err+40(FP)	// errno
    	RET
    err:
    	MOV	$-1, T0
    	MOV	T0, r1+32(FP)	// r1
    	SUB	A0, ZERO, A0
    	MOV	A0, err+40(FP)	// errno
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 861 bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config/builder.go

    func (b *Builder) BuildFromAndTo(fromAll echo.Callers, toAll echo.Services) *Builder {
    	b.t.Helper()
    	out := b.Copy()
    
    	systemNS := istio.ClaimSystemNamespaceOrFail(out.t, out.t)
    
    	for _, from := range fromAll {
    		for _, to := range toAll {
    			for _, s := range out.needFromAndTo {
    				out.addYAML(withParams(s, param.Params{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. hack/list-feature-tests.sh

    # Usage: `hack/list-feature-tests.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 887 bytes
    - Viewed (0)
  6. src/runtime/tls_loong64.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // If !iscgo, this is a no-op.
    //
    // NOTE: mcall() assumes this clobbers only R30 (REGTMP).
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVB	runtime·iscgo(SB), R30
    	BEQ	R30, nocgo
    
    	MOVV	g, runtime·tls_g(SB)
    
    nocgo:
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 20:18:25 UTC 2022
    - 589 bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            psi: KtElement,
            ktCall: KaCall,
            resolvedCalls: List<ResolvedCall<*>>,
            diagnostics: Diagnostics = context.diagnostics,
        ): KaCallInfo {
            val failedResolveCall = resolvedCalls.firstOrNull { !it.status.isSuccess } ?: return KaSuccessCallInfo(ktCall)
    
            val diagnostic = getDiagnosticToReport(context, psi, ktCall, diagnostics)?.let { KaFe10Diagnostic(it, token) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  9. src/runtime/wincallback.go

    // appropriately so different callbacks start with different
    // CALL instruction in runtime·callbackasm. This determines
    // which Go callback function is executed later on.
    
    TEXT runtime·callbackasm(SB),NOSPLIT|NOFRAME,$0
    `)
    	for i := 0; i < maxCallback; i++ {
    		buf.WriteString("\tCALL\truntime·callbackasm1(SB)\n")
    	}
    
    	filename := fmt.Sprintf("zcallback_windows.s")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:29:51 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHello(t *testing.T) {
    	hello := "Hello, world."
    	if out := Hello(); out != hello {
    		t.Errorf("Hello() = %q, want %q", out, hello)
    	}
    }
    
    func TestGlass(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top