Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,372 for callB (0.04 sec)

  1. okhttp/src/test/java/okhttp3/EventListenerTest.kt

            .build(),
        )
        val call =
          client.newCall(
            Request.Builder()
              .url(server.url("/"))
              .build(),
          )
        call.enqueue(
          object : Callback {
            override fun onFailure(
              call: Call,
              e: IOException,
            ) {
            }
    
            override fun onResponse(
              call: Call,
              response: Response,
            ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    	// Such path either escapes loop or return back to header.
    	// It isn't enough to have exit not dominated by any call, for example:
    	// ... some loop
    	// call1   call2
    	//   \      /
    	//     exit
    	// ...
    	// exit is not dominated by any call, but we don't have call-free path to it.
    	for _, l := range loops {
    		// Header contains call.
    		if dominatedByCall[l.header.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

        return null
      }
    
      /**
       * Cancel all calls currently enqueued or executing. Includes calls executed both
       * [synchronously][Call.execute] and [asynchronously][Call.enqueue].
       */
      fun cancelAll() {
        this.withLock {
          for (call in readyAsyncCalls) {
            call.call.cancel()
          }
          for (call in runningAsyncCalls) {
            call.call.cancel()
          }
          for (call in runningSyncCalls) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

        server.enqueue(
          MockResponse.Builder()
            .body("abc")
            .build(),
        )
        val call1 =
          client.newCall(
            Request.Builder()
              .url(server.url("/"))
              .build(),
          )
        val response1 = call1.execute()
        assertThat(response1.body.string()).isEqualTo("abc")
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    				{
    					Name:   "plaintext",
    					Call:   mkCall(8000, simulation.Plaintext),
    					Result: simulation.Result{Error: simulation.ErrNoFilterChain},
    				},
    				{
    					Name:   "mtls",
    					Call:   mkCall(8000, simulation.MTLS),
    					Result: simulation.Result{ClusterMatched: "InboundPassthroughCluster"},
    				},
    			},
    		},
    		{
    			name:   "global permissive",
    			config: paPermissive,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. test/fixedbugs/issue49512.go

    	return 0, 0
    }
    
    type C struct {
    	calls []func(int) (int, int)
    }
    
    func makeC() Funcs {
    	return &C{}
    }
    
    func (c *C) Add(fn func(int) (int, int)) Funcs {
    	c.calls = append(c.calls, fn)
    	return c
    }
    
    func (c *C) Call() {
    	for _, fn := range c.calls {
    		fn(0)
    	}
    }
    
    type Funcs interface {
    	Add(func(int) (int, int)) Funcs
    	Call()
    }
    
    func main() {
    	s := &S{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 11 04:02:33 UTC 2021
    - 809 bytes
    - Viewed (0)
  7. cmd/lock-rest-client.go

    	}
    	return ok, err
    }
    
    // RLock calls read lock REST API.
    func (c *lockRESTClient) RLock(ctx context.Context, args dsync.LockArgs) (reply bool, err error) {
    	return c.call(ctx, lockRPCRLock, &args)
    }
    
    // Lock calls lock REST API.
    func (c *lockRESTClient) Lock(ctx context.Context, args dsync.LockArgs) (reply bool, err error) {
    	return c.call(ctx, lockRPCLock, &args)
    }
    
    // RUnlock calls read unlock REST API.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 24 17:07:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

            .build()
        val request = Request.Builder().url(sanUrl).build()
        val call1 = client1.newCall(request)
        call1.enqueue(
          object : Callback {
            @Throws(IOException::class)
            override fun onResponse(
              call: Call,
              response: Response,
            ) {
              try {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. docs/features/events.md

      }
    
      @Override public void callStart(Call call) {
        printEvent("callStart");
      }
    
      @Override public void callEnd(Call call) {
        printEvent("callEnd");
      }
    
      @Override public void dnsStart(Call call, String domainName) {
        printEvent("dnsStart");
      }
    
      @Override public void dnsEnd(Call call, String domainName, List<InetAddress> inetAddressList) {
        printEvent("dnsEnd");
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  10. test/func5.go

    func emptyresults() {}
    func noresults()    {}
    
    var nothing func()
    
    func main() {
    	three(call(add, 1, 2))
    	three(call1(add, 1, 2))
    	f = add
    	three(call(f, 1, 2))
    	three(call1(f, 1, 2))
    	three(call(fn(), 1, 2))
    	three(call1(fn(), 1, 2))
    	three(call(func(a, b int) int { return a + b }, 1, 2))
    	three(call1(func(a, b int) int { return a + b }, 1, 2))
    
    	fc = addc
    	c := make(chan int)
    	go addc(1, 2, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 1.5K bytes
    - Viewed (0)
Back to top