Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 479 for tcCall (0.07 sec)

  1. okhttp/api/okhttp.api

    	public fun cacheConditionalHit (Lokhttp3/Call;Lokhttp3/Response;)V
    	public fun cacheHit (Lokhttp3/Call;Lokhttp3/Response;)V
    	public fun cacheMiss (Lokhttp3/Call;)V
    	public fun callEnd (Lokhttp3/Call;)V
    	public fun callFailed (Lokhttp3/Call;Ljava/io/IOException;)V
    	public fun callStart (Lokhttp3/Call;)V
    	public fun canceled (Lokhttp3/Call;)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimePropertyResolver.kt

        private
        fun kotlinPropertyGetter(property: KProperty<*>) =
            DeclarativeRuntimePropertyGetter { property.call(it) }
    
        private
        fun kotlinPropertySetter(property: KMutableProperty<*>) =
            DeclarativeRuntimePropertySetter { receiver, value -> property.setter.call(receiver, value) }
    
        private
        fun findKotlinFunctionGetter(receiverClass: KClass<*>, name: String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 17:34:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    				skip--
    			} else {
    				// Callers expect the pc buffer to contain return addresses
    				// and do the -1 themselves, so we add 1 to the call pc to
    				// create a "return pc". Since there is no actual call, here
    				// "return pc" just means a pc you subtract 1 from to get
    				// the pc of the "call". The actual no-op we insert may or
    				// may not be 1 byte.
    				pcBuf[n] = uf.pc + 1
    				n++
    			}
    			u.calleeFuncID = sf.funcID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/runtime/stkframe.go

    	fn funcInfo
    
    	// pc is the program counter within fn.
    	//
    	// The meaning of this is subtle:
    	//
    	// - Typically, this frame performed a regular function call
    	//   and this is the return PC (just after the CALL
    	//   instruction). In this case, pc-1 reflects the CALL
    	//   instruction itself and is the correct source of symbolic
    	//   information.
    	//
    	// - If this frame "called" sigpanic, then pc is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/go/types/builtins_test.go

    func TestBuiltinSignatures(t *testing.T) {
    	DefPredeclaredTestFuncs()
    
    	seen := map[string]bool{"trace": true} // no test for trace built-in; add it manually
    	for _, call := range builtinCalls {
    		testBuiltinSignature(t, call.name, call.src, call.sig)
    		seen[call.name] = true
    	}
    
    	// make sure we didn't miss one
    	for _, name := range Universe.Names() {
    		if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/FailingCall.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3
    
    import okio.Timeout
    
    open class FailingCall : Call {
      override fun request(): Request = error("unexpected")
    
      override fun execute(): Response = error("unexpected")
    
      override fun enqueue(responseCallback: Callback): Unit = error("unexpected")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirInvokeFunctionReference.kt

        override fun KaSession.resolveToSymbols(): Collection<KaSymbol> {
            return expression.resolveCallOld()?.calls.orEmpty().mapNotNull { call ->
                (call as? KaSimpleFunctionCall)
                    ?.takeIf { it.isImplicitInvoke }
                    ?.partiallyAppliedSymbol
                    ?.symbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/net/fd_windows.go

    	writeSyscallName    = "wsasend"
    	writeToSyscallName  = "wsasendto"
    	writeMsgSyscallName = "wsasendmsg"
    )
    
    func init() {
    	poll.InitWSA()
    }
    
    // canUseConnectEx reports whether we can use the ConnectEx Windows API call
    // for the given network type.
    func canUseConnectEx(net string) bool {
    	switch net {
    	case "tcp", "tcp4", "tcp6":
    		return true
    	}
    	// ConnectEx windows API does not support connectionless sockets.
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

          SetPotentiallyWritten(assign_variable.getResource());
          return;
        }
        if (auto call = dyn_cast<CallOpInterface>(op)) {
          if (auto func = dyn_cast<func::FuncOp>(call.resolveCallable())) {
            PropagatePotentiallyWrittenUpFromCallee(func.getRegion(),
                                                    call.getArgOperands());
          }
          return;
        }
        if (auto if_op = dyn_cast<TF::IfOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/TrustedListenableFutureTaskTest.java

        final Exception e = new Exception();
        TrustedListenableFutureTask<Integer> task =
            TrustedListenableFutureTask.create(
                new Callable<Integer>() {
                  @Override
                  public Integer call() throws Exception {
                    throw e;
                  }
                });
        task.run();
        assertTrue(task.isDone());
        assertFalse(task.isCancelled());
        try {
          getDone(task);
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top