Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 150 for Calling (0.11 sec)

  1. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). The system is free
    // to reuse thread IDs, so first a thread ID is used to
    // call into Go, and then is used for a Go-created thread.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/ProjectBuilder.java

     * implementations.</p>
     *
     * <p>To create a project instance:</p>
     *
     * <ol>
     *
     * <li>Create a {@code ProjectBuilder} instance by calling {@link #builder()}.</li>
     *
     * <li>Optionally, configure the builder.</li>
     *
     * <li>Call {@link #build()} to create the {@code Project} instance.</li>
     *
     * </ol>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         * @see org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder.unwrapUseSiteSubstitutionOverride
         */
        public val name: Name
            get() = withValidityAssertion {
                // The case where PSI is null is when calling `invoke()` on a variable with functional type, e.g. `x(1)` below:
                //
                //   fun foo(x: (item: Int) -> Unit) { x(1) }
                //   fun bar(x: Function1<@ParameterName("item") Int, Unit>) { x(1) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/UnrelatedMethodInstrumentationInDynamicGroovyIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    class UnrelatedMethodInstrumentationInDynamicGroovyIntegrationTest extends AbstractProcessInstrumentationIntegrationTest implements DynamicGroovyPluginMixin {
        def "calling an unrelated method is allowed in groovy build script #indyStatus"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            generateClassesWithClashingMethods()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top