Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 636 for Calling (0.24 sec)

  1. src/runtime/race_s390x.s

    // Third, in long-term it will allow to remove cyclic runtime/race dependency on cmd/go.
    
    // A brief recap of the s390x C calling convention.
    // Arguments are passed in R2...R6, the rest is on stack.
    // Callee-saved registers are: R6...R13, R15.
    // Temporary registers are: R0...R5, R14.
    
    // When calling racecalladdr, R1 is the call target address.
    
    // The race ctx, ThreadState *thr below, is passed in R2 and loaded in racecalladdr.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/runtime/rt0_linux_ppc64le.s

    #include "cgo/abi_ppc64x.h"
    
    TEXT _rt0_ppc64le_linux(SB),NOSPLIT,$0
    	XOR R0, R0	  // Make sure R0 is zero before _main
    	BR _main<>(SB)
    
    TEXT _rt0_ppc64le_linux_lib(SB),NOSPLIT|NOFRAME,$0
    	// This is called with ELFv2 calling conventions. Convert to Go.
    	// Allocate argument storage for call to newosproc0.
    	STACK_AND_SAVE_HOST_TO_GO_ABI(16)
    
    	MOVD	R3, _rt0_ppc64le_linux_lib_argc<>(SB)
    	MOVD	R4, _rt0_ppc64le_linux_lib_argv<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/go/ast/walk.go

    		Walk(v, node)
    	}
    }
    
    // TODO(gri): Investigate if providing a closure to Walk leads to
    // simpler use (and may help eliminate Inspect in turn).
    
    // Walk traverses an AST in depth-first order: It starts by calling
    // v.Visit(node); node must not be nil. If the visitor w returned by
    // v.Visit(node) is not nil, Walk is invoked recursively with visitor
    // w for each of the non-nil children of node, followed by a call of
    // w.Visit(nil).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtFunctionLikeSymbol.kt

        public abstract val valueParameters: List<KaValueParameterSymbol>
    
        /**
         * Kotlin functions always have stable parameter names that can be reliably used when calling them with named arguments.
         * Functions loaded from platform definitions (e.g. Java binaries or JS) may have unstable parameter names that vary from
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/sync/once.go

    //
    // Because no call to Do returns until the one call to f returns, if f causes
    // Do to be called, it will deadlock.
    //
    // If f panics, Do considers it to have returned; future calls of Do return
    // without calling f.
    func (o *Once) Do(f func()) {
    	// Note: Here is an incorrect implementation of Do:
    	//
    	//	if o.done.CompareAndSwap(0, 1) {
    	//		f()
    	//	}
    	//
    	// Do guarantees that when it returns, f has finished.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/go/types/eval_test.go

    	// and type.
    	var sources = []string{
    		`
    		package p
    		import "fmt"
    		import m "math"
    		const c = 3.0
    		type T []int
    		func f(a int, s string) float64 {
    			fmt.Println("calling f")
    			_ = m.Pi // use package math
    			const d int = c + 1
    			var x int
    			x = a + len(s)
    			return float64(x)
    			/* true => true, untyped bool */
    			/* fmt.Println => , func(a ...any) (n int, err error) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/runtime/cpuprof.go

    // If the profiler is on, the rate cannot be changed without first turning it off.
    //
    // Most clients should use the [runtime/pprof] package or
    // the [testing] package's -test.cpuprofile flag instead of calling
    // SetCPUProfileRate directly.
    func SetCPUProfileRate(hz int) {
    	// Clamp hz to something reasonable.
    	if hz < 0 {
    		hz = 0
    	}
    	if hz > 1000000 {
    		hz = 1000000
    	}
    
    	lock(&cpuprof.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // FailNow marks the function as having failed and stops its execution
    // by calling runtime.Goexit (which then runs all deferred calls in the
    // current goroutine).
    // Execution will continue at the next test or benchmark.
    // FailNow must be called from the goroutine running the
    // test or benchmark function, not from other goroutines
    // created during the test. Calling FailNow does not stop
    // those other goroutines.
    func (c *common) FailNow() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    // Every call to [Rows.Scan], even the first one, must be preceded by a call to [Rows.Next].
    func (rs *Rows) Next() bool {
    	// If the user's calling Next, they're done with their previous row's Scan
    	// results (any RawBytes memory), so we can release the read lock that would
    	// be preventing awaitDone from calling close.
    	rs.closemuRUnlockIfHeldByScan()
    
    	if rs.contextDone.Load() != nil {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingManagerInternal.java

         *
         * <p>While a log manager is active, any changes made to the settings will take effect immediately. When a log manager is not active, changes to its settings will apply only once it is made active by calling {@link #start()}.</p>
         */
        @Override
        LoggingManagerInternal start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top