Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for dispatchTo (0.2 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        // We use a re-entrant dispatcher to initiate one HTTPS connection while the other is in flight.
        server.dispatcher =
          object : Dispatcher() {
            var requestCount = 0
    
            override fun dispatch(request: RecordedRequest): MockResponse {
              val result = queueDispatcher.dispatch(request)
              requestCount++
              if (requestCount == 1) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	record := attributeRecord(nil, fakeParams, admission.Create)
    	require.ErrorContains(t,
    		testContext.Plugin.Dispatch(
    			testContext,
    			record,
    			&admission.RuntimeObjectInterfaces{},
    		),
    		`Denied`)
    
    	require.NoError(t, testContext.DeleteAndWait(denyPolicy))
    
    	require.NoError(t, testContext.Plugin.Dispatch(
    		testContext,
    		// Object is irrelevant/unchecked for this test. Just test that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          this.taskRunner = okHttpClient.taskRunner
        }
    
        /**
         * Sets the dispatcher used to set policy and execute asynchronous requests. Must not be null.
         */
        fun dispatcher(dispatcher: Dispatcher) =
          apply {
            this.dispatcher = dispatcher
          }
    
        /**
         * Sets the connection pool used to recycle HTTP and HTTPS connections.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import org.sonatype.plexus.components.cipher.DefaultPlexusCipher;
    import org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher;
    import org.sonatype.plexus.components.sec.dispatcher.SecDispatcher;
    import org.sonatype.plexus.components.sec.dispatcher.SecUtil;
    import org.sonatype.plexus.components.sec.dispatcher.model.SettingsSecurity;
    
    import static java.util.Comparator.comparing;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// See: https://golang.org/pkg/sync/atomic/ for more information
    	incomingHWM storage.HighWaterMark
    	// Incoming events that should be dispatched to watchers.
    	incoming chan watchCacheEvent
    
    	resourcePrefix string
    
    	sync.RWMutex
    
    	// Before accessing the cacher's cache, wait for the ready to be ok.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. okhttp/api/okhttp.api

    	public final fun connectionPool ()Lokhttp3/ConnectionPool;
    	public final fun connectionSpecs ()Ljava/util/List;
    	public final fun cookieJar ()Lokhttp3/CookieJar;
    	public final fun dispatcher ()Lokhttp3/Dispatcher;
    	public final fun dns ()Lokhttp3/Dns;
    	public final fun eventListenerFactory ()Lokhttp3/EventListener$Factory;
    	public final fun fastFallback ()Z
    	public final fun followRedirects ()Z
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    buildFunctionCall {
                        // NOTE: We only need to copy the explicit receiver and not the dispatch and extension receivers as only the explicit
                        // receiver is needed by the resolver. The dispatch and extension receivers are only assigned after resolution when a
                        // candidate is selected.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

    import org.gradle.internal.code.UserCodeApplicationContext
    import org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier
    import org.gradle.internal.component.model.DependencyMetadata
    import org.gradle.internal.dispatch.Dispatch
    import org.gradle.internal.event.AnonymousListenerBroadcast
    import org.gradle.internal.event.ListenerManager
    import org.gradle.internal.locking.DefaultDependencyLockingState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // fair in the respective halves of a split scenario;
    // in a non-split scenario this is a singleton with one expectation.
    // expectAllRequests indicates whether all requests are expected to get dispatched.
    // expectedAverages, if provided, replaces the normal calculation of expected results.
    type uniformScenario struct {
    	name                                     string
    	qs                                       fq.QueueSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top