Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,471 for call27 (0.41 sec)

  1. test/live.go

    		go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newobject: &x .autotmp_[0-9]+$" "live at call to newproc: &x$" // allocate two closures, the func literal, and the wrapper for go
    	}
    	go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newobject: .autotmp_[0-9]+$" // allocate two closures, the func literal, and the wrapper for go
    	printnl()
    }
    
    //go:noescape
    func call27(func())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. test/live_regabi.go

    		go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newobject: &x .autotmp_[0-9]+$" "live at call to newproc: &x$" // allocate two closures, the func literal, and the wrapper for go
    	}
    	go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newobject: .autotmp_[0-9]+$" // allocate two closures, the func literal, and the wrapper for go
    	printnl()
    }
    
    //go:noescape
    func call27(func())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. src/runtime/asm_wasm.s

    	MOVD RET3, 24(SP)
    	MOVD $0,   32(SP)
    	CALL runtime·reflectcallmove(SB)
    	RET
    
    CALLFNcall16, 16)
    CALLFNcall32, 32)
    CALLFNcall64, 64)
    CALLFNcall128, 128)
    CALLFNcall256, 256)
    CALLFN(·call512, 512)
    CALLFN(·call1024, 1024)
    CALLFN(·call2048, 2048)
    CALLFN(·call4096, 4096)
    CALLFN(·call8192, 8192)
    CALLFN(·call16384, 16384)
    CALLFN(·call32768, 32768)
    CALLFN(·call65536, 65536)
    CALLFN(·call131072, 131072)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    		/* - vet will complain about this site as unreachable */
    		callee(x)
    	}
    	if x != G {
    		callee(x)
    		if x < 100 {
    			panic("ouch")
    		}
    	}
    	if x+G == 101 {
    		if x < 100 {
    			panic("ouch")
    		}
    		callee(x)
    	}
    	if x < -101 {
    		callee(x)
    		if len(q) == 0 {
    			return
    		}
    		callsexit(x)
    	}
    }
    
    // calls.go init.0 129 0 1
    // <endpropsdump>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/callee.go

    	"golang.org/x/tools/go/ast/astutil"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    // Callee returns the named target of a function call, if any:
    // a function, method, builtin, or variable.
    //
    // Functions and methods may potentially have type parameters.
    func Callee(info *types.Info, call *ast.CallExpr) types.Object {
    	fun := astutil.Unparen(call.Fun)
    
    	// Look through type instantiation if necessary.
    	isInstance := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/caller.go

    )
    
    // CallResult the result of a call operation.
    type CallResult struct {
    	From      Caller
    	Opts      CallOptions
    	Responses echo.Responses
    }
    
    type Caller interface {
    	// Call from this Instance to a target Instance.
    	Call(options CallOptions) (CallResult, error)
    	CallOrFail(t test.Failer, options CallOptions) CallResult
    }
    
    type Callers []Caller
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. docs/features/calls.md

    Calls are executed in one of two ways:
    
     * **Synchronous:** your thread blocks until the response is readable.
     * **Asynchronous:** you enqueue the request on any thread, and get [called back](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-callback/) on another thread when the response is readable.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        // The first call times out.
        val call1 = client.newCall(Request(server.url("/")))
        assertFailsWith<SocketTimeoutException> {
          call1.execute().use { response ->
            response.body.string()
          }
        }
    
        // The second call succeeds.
        val call2 = client.newCall(Request(server.url("/")))
        call2.execute().use { response ->
          assertThat(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

    }
    
    internal fun KaSession.compareCalls(call1: KaCall, call2: KaCall): Int {
        // The order of candidate calls is non-deterministic. Sort by symbol string value.
        if (call1 !is KaCallableMemberCall<*, *> || call2 !is KaCallableMemberCall<*, *>) return 0
        return stringRepresentation(call1.partiallyAppliedSymbol).compareTo(stringRepresentation(call2.partiallyAppliedSymbol))
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. src/go/types/call.go

    	}
    
    	// collect type parameters of callee and generic function arguments
    	var tparams []*TypeParam
    
    	// collect type parameters of callee
    	n := sig.TypeParams().Len()
    	if n > 0 {
    		if !check.allowVersion(call, go1_18) {
    			switch call.Fun.(type) {
    			case *ast.IndexExpr, *ast.IndexListExpr:
    				ix := typeparams.UnpackIndexExpr(call.Fun)
    				check.versionErrorf(inNode(call.Fun, ix.Lbrack), go1_18, "function instantiation")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top