Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 277 for enqueue0 (0.28 sec)

  1. android-test-app/src/main/kotlin/okhttp/android/testapp/MainActivity.kt

        super.onCreate(savedInstanceState)
    
        val client = OkHttpClient()
    
        val url = "https://github.com/square/okhttp".toHttpUrl()
        println(url.topPrivateDomain())
    
        client.newCall(Request(url)).enqueue(
          object : Callback {
            override fun onFailure(
              call: Call,
              e: IOException,
            ) {
              println("failed: $e")
            }
    
            override fun onResponse(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/HttpsServer.java

            .heldCertificate(localhostCertificate)
            .build();
        MockWebServer server = new MockWebServer();
        server.useHttps(serverCertificates.sslSocketFactory(), false);
        server.enqueue(new MockResponse());
    
        HandshakeCertificates clientCertificates = new HandshakeCertificates.Builder()
            .addTrustedCertificate(localhostCertificate.certificate())
            .build();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 02 14:04:37 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. okhttp-coroutines/src/main/kotlin/okhttp3/coroutines/ExecuteAsync.kt

    @ExperimentalCoroutinesApi // resume with a resource cleanup.
    suspend fun Call.executeAsync(): Response =
      suspendCancellableCoroutine { continuation ->
        continuation.invokeOnCancellation {
          this.cancel()
        }
        this.enqueue(
          object : Callback {
            override fun onFailure(
              call: Call,
              e: IOException,
            ) {
              continuation.resumeWithException(e)
            }
    
            override fun onResponse(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. pkg/kube/controllers/common_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "pod",
    			Namespace:       "ns",
    			OwnerReferences: []metav1.OwnerReference{},
    		},
    	})
    	if got := written.Load(); got != "" {
    		t.Fatalf("unexpectedly enqueued %v", got)
    	}
    
    	handler(&corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "pod",
    			Namespace: "ns",
    			OwnerReferences: []metav1.OwnerReference{{
    				APIVersion: gvk.Deployment.GroupVersion(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 15:34:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. pkg/controller/storageversionmigrator/storageversionmigrator.go

    	svmc.enqueue(svm)
    }
    
    func (svmc *SVMController) updateSVM(logger klog.Logger, oldObj, newObj interface{}) {
    	oldSVM := oldObj.(*svmv1alpha1.StorageVersionMigration)
    	newSVM := newObj.(*svmv1alpha1.StorageVersionMigration)
    	logger.V(4).Info("Updating", "svm", klog.KObj(oldSVM))
    	svmc.enqueue(newSVM)
    }
    
    func (svmc *SVMController) enqueue(svm *svmv1alpha1.StorageVersionMigration) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    		c.queue.Forget(key)
    		return true
    	}
    
    	utilruntime.HandleError(fmt.Errorf("%v failed with: %v", key, err))
    	c.queue.AddRateLimited(key)
    
    	return true
    }
    
    func (c *CRDFinalizer) enqueue(obj *apiextensionsv1.CustomResourceDefinition) {
    	key, err := cache.DeletionHandlingMetaNamespaceKeyFunc(obj)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %#v: %v", obj, err))
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	castObj := obj.(*apiextensionsv1.CustomResourceDefinition)
    	klog.V(4).Infof("Adding %s", castObj.Name)
    	c.enqueue(castObj)
    }
    
    func (c *NamingConditionController) updateCustomResourceDefinition(obj, _ interface{}) {
    	castObj := obj.(*apiextensionsv1.CustomResourceDefinition)
    	klog.V(4).Infof("Updating %s", castObj.Name)
    	c.enqueue(castObj)
    }
    
    func (c *NamingConditionController) deleteCustomResourceDefinition(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/kt/AsynchronousGet.kt

      private val client = OkHttpClient()
    
      fun run() {
        val request =
          Request.Builder()
            .url("http://publicobject.com/helloworld.txt")
            .build()
    
        client.newCall(request).enqueue(
          object : Callback {
            override fun onFailure(
              call: Call,
              e: IOException,
            ) {
              e.printStackTrace()
            }
    
            override fun onResponse(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/InMemoryCacheDecoratorFactoryTest.groovy

            0 * target._
    
            when:
            cache.put("key", "new value")
    
            then:
            1 * crossProcessCacheAccess.acquireFileLock() >> lock
            1 * asyncCacheAccess.enqueue(_) >> { Runnable action -> action.run() }
            1 * target.put("key", "new value")
            1 * lock.run()
            0 * _._
    
            when:
            result = cache.getIfPresent("key")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt

        message = "moved to val",
        replaceWith = ReplaceWith(expression = "requestCount"),
        level = DeprecationLevel.ERROR,
      )
      fun getRequestCount(): Int = delegate.requestCount
    
      fun enqueue(response: MockResponse) {
        delegate.enqueue(response.wrap())
      }
    
      @Throws(IOException::class)
      @JvmOverloads
      fun start(port: Int = 0) {
        started = true
        delegate.start(port)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top