Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,045 for mcall (0.05 sec)

  1. src/runtime/race_s390x.s

    	MOVD	g_m(g), R8			// R8 = thread.
    	MOVD	m_g0(R8), R8			// R8 = g0.
    	CMPBEQ	R8, g, call			// Already on g0?
    	MOVD	(g_sched+gobuf_sp)(R8), R15	// Switch SP to g0.
    call:	SUB	$160, R15			// Allocate C frame.
    	BL	R1				// Call C code.
    	MOVD	R7, R15				// Restore SP.
    	RET					// Return to Go.
    
    // C->Go callback thunk that allows to call runtime·racesymbolize from C
    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/syscall/syscall_linux_test.go

    	}
    	vs := []struct {
    		call           string
    		fn             func() error
    		filter, expect string
    	}{
    		{call: "Setegid(1)", fn: func() error { return syscall.Setegid(1) }, filter: "Gid:", expect: "\t0\t1\t0\t1"},
    		{call: "Setegid(0)", fn: func() error { return syscall.Setegid(0) }, filter: "Gid:", expect: "\t0\t0\t0\t0"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                  @Override
                  public ClosingFuture<TestCloseable> call(DeferredCloser closer) {
                    closer.eventuallyClose(closeable1, closingExecutor);
                    return ClosingFuture.submit(
                        new ClosingCallable<TestCloseable>() {
                          @Override
                          public TestCloseable call(DeferredCloser deferredCloser) throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. src/internal/testlog/exit.go

    package testlog
    
    import (
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // PanicOnExit0 reports whether to panic on a call to os.Exit(0).
    // This is in the testlog package because, like other definitions in
    // package testlog, it is a hook between the testing package and the
    // os package. This is used to ensure that an early call to os.Exit(0)
    // does not cause a test to pass.
    func PanicOnExit0() bool {
    	panicOnExit0.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/op.go

    	BoundsKindCount
    )
    
    // boundsABI determines which register arguments a bounds check call should use. For an [a:b:c] slice, we do:
    //
    //	CMPQ c, cap
    //	JA   fail1
    //	CMPQ b, c
    //	JA   fail2
    //	CMPQ a, b
    //	JA   fail3
    //
    // fail1: CALL panicSlice3Acap (c, cap)
    // fail2: CALL panicSlice3B (b, c)
    // fail3: CALL panicSlice3C (a, b)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. src/runtime/export_debug_test.go

    import (
    	"internal/abi"
    	"internal/stringslite"
    	"unsafe"
    )
    
    // InjectDebugCall injects a debugger call to fn into g. regArgs must
    // contain any arguments to fn that are passed in registers, according
    // to the internal Go ABI. It may be nil if no arguments are passed in
    // registers to fn. args must be a pointer to a valid call frame (including
    // arguments and return space) for fn, or nil. tkill must be a function that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/syscall/js/js_test.go

    	var i int64 = 40
    	if got := dummys.Call("add", i, 2).Int(); got != 42 {
    		t.Errorf("got %#v, want %#v", got, 42)
    	}
    	if got := dummys.Call("add", js.Global().Call("eval", "40"), 2).Int(); got != 42 {
    		t.Errorf("got %#v, want %#v", got, 42)
    	}
    
    	expectPanic(t, func() {
    		dummys.Call("zero")
    	})
    	expectValueError(t, func() {
    		dummys.Get("zero").Call("badMethod")
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         *     {@link #whenAllComplete(Iterable)} or {@link #whenAllComplete(Iterable)}
         * @throws IllegalStateException if called outside of a call to {@link
         *     CombiningCallable#call(DeferredCloser, Peeker)} or {@link
         *     AsyncCombiningCallable#call(DeferredCloser, Peeker)}
         */
        @ParametricNullness
        public final <D extends @Nullable Object> D getDone(ClosingFuture<D> closingFuture)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        // }
        // ...
        // func.call @f(%x : bar)
    
        CallInterfaceCallable callable = call.getCallableForCallee();
        mlir::SymbolRefAttr sym = callable.dyn_cast<mlir::SymbolRefAttr>();
        auto symbol =
            mlir::SymbolTable::lookupNearestSymbolFrom(call.getOperation(), sym);
        if (!symbol) return failure();
        auto f = llvm::dyn_cast<mlir::func::FuncOp>(symbol);
    
        if (call.getOperation()->getNumOperands() !=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/GroovyPluginImplementation.groovy

                        def value = ${read.groovyExpression}
                        println("apply = " + value)
    
                        // Instance call
                        def sys = System
                        println("apply INSTANCE = " + sys.getProperty("INSTANCE"))
    
                        // Call from closure
                        def cl = { p ->
                            println("\$p CLOSURE = " + sys.getProperty("CLOSURE"))
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top