Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 147 for call27 (0.09 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "top-level adder has a convention and is called"     | addToList("foo") | addToList("bar")   | "list = foo, bar"
            "top-level adder has a convention and is not called" | addToList("foo") | ""                 | "list = foo"
            "nested adder has a convention and is called"        | addToBaz("foo")  | addToBaz("bar")    | "baz = foo, bar"
            "nested adder has a convention and is not called"    | addToBaz("foo")  | ""                 | "baz = foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/runtime/cgocall.go

    // license that can be found in the LICENSE file.
    
    // Cgo call and callback support.
    //
    // To call into the C function f from Go, the cgo-generated code calls
    // runtime.cgocall(_cgo_Cfunc_f, frame), where _cgo_Cfunc_f is a
    // gcc-compiled function written by cgo.
    //
    // runtime.cgocall (below) calls entersyscall so as not to block
    // other goroutines or the garbage collector, and then calls
    // runtime.asmcgocall(_cgo_Cfunc_f, frame).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func.go

    	funcOpenCodedDeferDisallowed // can't do open-coded defers
    	funcClosureResultsLost       // closure is called indirectly and we lost track of its results; used by escape analysis
    	funcPackageInit              // compiler emitted .init func for package
    )
    
    type SymAndPos struct {
    	Sym *obj.LSym // LSym of callee
    	Pos src.XPos  // line of call
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/runtime/race_amd64.s

    // Switches SP to g0 stack and calls (AX). Arguments already set.
    TEXT	racecall<>(SB), NOSPLIT|NOFRAME, $0-0
    	MOVQ	g_m(R14), R13
    	// Switch to g0 stack.
    	MOVQ	SP, R12		// callee-saved, preserved across the CALL
    	MOVQ	m_g0(R13), R10
    	CMPQ	R10, R14
    	JE	call	// already on g0
    	MOVQ	(g_sched+gobuf_sp)(R10), SP
    call:
    	ANDQ	$~15, SP	// alignment for gcc ABI
    	CALL	AX
    	MOVQ	R12, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/encoding/base32/base32_test.go

    		// decoder.Read will be called 8 times, badReader.Read will be called twice, returning
    		// valid data both times but an error on the second call.
    		{r: badReader{data: []byte("NRSWC43VOJSS4==="), errs: []error{nil, badErr}},
    			res: "leasure.", err: badErr, dbuflen: 1},
    		// Check io.EOF is properly reported when decoder.Read is called multiple times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    	// 'fsGroup' so that it can be accessed by the pod. This may
    	// be called more than once, so implementations must be
    	// idempotent.
    	SetUpAt(dir string, mounterArgs MounterArgs) error
    	// GetAttributes returns the attributes of the mounter.
    	// This function is called after SetUp()/SetUpAt().
    	GetAttributes() Attributes
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. docs/en/docs/python-types.md

    # Python Types Intro
    
    Python has support for optional "type hints" (also called "type annotations").
    
    These **"type hints"** or annotations are a special syntax that allow declaring the <abbr title="for example: str, int, float, bool">type</abbr> of a variable.
    
    By declaring types for your variables, editors and tools can give you better support.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/runtime/tracestack.go

    outer:
    	for _, retPC := range pcBuf[1:] {
    		callPC := retPC - 1
    		fi := findfunc(callPC)
    		if !fi.valid() {
    			// There is no funcInfo if callPC belongs to a C function. In this case
    			// we still keep the pc, but don't attempt to expand inlined frames.
    			if more := skipOrAdd(retPC); !more {
    				break outer
    			}
    			continue
    		}
    
    		u, uf := newInlineUnwinder(fi, callPC)
    		for ; uf.valid(); uf = u.next(uf) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/deadcode.go

    	ifaceMethod        map[methodsig]bool // methods called from reached interface call sites
    	genericIfaceMethod map[string]bool    // names of methods called from reached generic interface call sites
    	markableMethods    []methodref        // methods of reached types
    	reflectSeen        bool               // whether we have seen a reflect method call
    	dynlink            bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/TestThread.java

     * {@link #callAndAssertBlocks} method is ever called in a test, the lock-like object must have a
     * method equivalent to {@link java.util.concurrent.locks.ReentrantLock#hasQueuedThread(Thread)}. If
     * the {@link #callAndAssertWaits} method is ever called in a test, the lock-like object must have a
     * method equivalent to {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top