Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,372 for callB (0.05 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //
    //	fmt.Printf("%[3]d", 1, 2) // fmt.Printf call has invalid argument index 3
    //
    // The checker also uses a heuristic to report calls to Print-like
    // functions that appear to have been intended for their Printf-like
    // counterpart:
    //
    //	log.Print("%d", 123) // log.Print call has possible formatting directive %d
    //
    // # Inferred printf wrappers
    //
    // Functions that delegate their arguments to fmt.Printf are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        val call = calls[0]
        assertThat(call).contains("host=" + url.host)
        assertThat(call).contains("port=" + url.port)
        assertThat(call).contains("site=" + url.host)
        assertThat(call).contains("url=http://android.com")
        assertThat(call).contains("type=" + java.net.Authenticator.RequestorType.PROXY)
        assertThat(call).contains("prompt=Bar")
        assertThat(call).contains("protocol=http")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/stackcheck.go

    		return 0, nil
    	}
    	if sym == stackCheckIndirect {
    		// Assume that indirect/closure calls are always to
    		// splittable functions, so they just need enough room
    		// to call morestack.
    		return sc.callSize, []stackCheckEdge{{sc.callSize, sc.morestack}}
    	}
    
    	// Ignore calls to external functions. Assume that these calls
    	// are only ever happening on the system stack, where there's
    	// plenty of room.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    	}
    
    	if id := funcIdent(fun); id != nil {
    		if lit := funcLitInScope(id); lit != nil { // function lit in variable?
    			return &asyncCall{region: lit, async: call, scope: lit, fun: fun}
    		}
    	}
    
    	// Check within t.Run(name, fun) for calls to t.Forbidden,
    	// e.g. t.Run(name, func(t *testing.T){ t.Forbidden() })
    	return &asyncCall{region: call, async: call, scope: fun, fun: fun}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCallInfo.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaConstructorSymbol
    
    /**
     * Call information at call site.
     */
    public sealed class KaCallInfo : KaLifetimeOwner
    
    /**
     * Successfully resolved call.
     */
    public class KaSuccessCallInfo(private val backingCall: KaCall) : KaCallInfo() {
        override val token: KaLifetimeToken get() = backingCall.token
        public val call: KaCall get() = withValidityAssertion { backingCall }
    }
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/inl.go

    	do(pos)
    }
    
    func dumpInlTree(ctxt *Link, tree InlTree) {
    	for i, call := range tree.nodes {
    		pos := ctxt.PosTable.Pos(call.Pos)
    		ctxt.Logf("%0d | %0d | %s (%s) pc=%d\n", i, call.Parent, call.Func, pos, call.ParentPC)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_cluster_formation.cc

      }
      // Partitioned calls are executed asynchronous. The calls outside of
      // device clusters therefore should not be inlined to perserve run-time
      // performance.
      for (auto &pcall_op : noinline_pcall_ops) {
        auto call = llvm::cast<CallOpInterface>(pcall_op.getOperation());
        auto callee =
            llvm::cast<FuncOp>(call.resolveCallable(&symbol_table_collection));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/runtime/sys_openbsd_arm64.s

    	MOVW	0(R0), R0		// arg 1 - fd
    	CALL	libc_write(SB)
    	CMP	$-1, R0
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    	NEG	R0, R0			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·pipe2_trampoline(SB),NOSPLIT,$0
    	MOVW	8(R0), R1		// arg 2 - flags
    	MOVD	0(R0), R0		// arg 1 - filedes
    	CALL	libc_pipe2(SB)
    	CMP	$-1, R0
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. src/runtime/libfuzzer_arm64.s

    	MOVD	R30, savedRetAddr-8(SP)
    
    	MOVD	g_m(g), R10
    
    	// Switch to g0 stack.
    	MOVD	RSP, R19	// callee-saved, preserved across the CALL
    	MOVD	m_g0(R10), R11
    	CMP	R11, g
    	BEQ	call	// already on g0
    	MOVD	(g_sched+gobuf_sp)(R11), R12
    	MOVD	R12, RSP
    call:
    	// Load address of the ret sled into the default register for the return
    	// address.
    	ADR	ret_sled, R30
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 07 14:47:46 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. test/fixedbugs/bug449.go

    		calls.WriteString(strings.Replace("call(test$)\n\t", "$", s, -1))
    	}
    
    	program = strings.Replace(program, "$DECLS", decls.String(), 1)
    	program = strings.Replace(program, "$CALLS", calls.String(), 1)
    	fmt.Print(program)
    }
    
    var program = `package main
    
    var count int
    
    func call(f func() bool) {
    	if f() {
    		count++
    	}
    }
    
    $DECLS
    
    func main() {
    	$CALLS
    	if count != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 01 03:02:46 UTC 2012
    - 1.5K bytes
    - Viewed (0)
Back to top