Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for dispatchTo (0.3 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.groovy

            when:
            def acceptor = incomingConnector.accept({ ConnectCompletion event ->
                def conn = event.create(serializer)
                conn.dispatch("bye")
                conn.stop()
                instant.closed
            } as Action, false)
    
            def connection = outgoingConnector.connect(acceptor.address).create(serializer)
            thread.blockUntil.closed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. docs/changelogs/upgrading_to_okhttp_4.md

     * **CipherSuite**: javaName
     * **ConnectionSpec**: cipherSuites, supportsTlsExtensions, tlsVersions
     * **Cookie**: domain, expiresAt, hostOnly, httpOnly, name, path, persistent, value
     * **Dispatcher**: executorService
     * **FormBody**: size
     * **Handshake**: cipherSuite, localCertificates, localPrincipal, peerCertificates, peerPrincipal,
       tlsVersion
     * **HandshakeCertificates**: keyManager, trustManager
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/KotlinDeprecationErrorTest.kt

        val headers: Headers? = part.headers()
        val body: RequestBody = part.body()
      }
    
      @Test @Disabled
      fun okHttpClient() {
        val client = OkHttpClient()
        val dispatcher: Dispatcher = client.dispatcher()
        val proxy: Proxy? = client.proxy()
        val protocols: List<Protocol> = client.protocols()
        val connectionSpecs: List<ConnectionSpec> = client.connectionSpecs()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

    import org.gradle.internal.Cast;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.dispatch.MethodInvocation;
    import org.gradle.internal.event.ListenerBroadcast;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.logging.ConsoleRenderer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

            assertThat(
                invocations,
                equalTo(listOf("c0", "c1(42)", "c2(11, 33)", "c3(23, 7, 12)"))
            )
        }
    
        @Test
        fun `#withGroovyBuilder can dispatch keyword arguments against GroovyObject`() {
    
            val expectedInvokeResult = Any()
            val delegate = mock<GroovyObject> {
                on { invokeMethod(any(), any()) } doReturn expectedInvokeResult
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

                        break;
                    }
                }
                // A failure has happened. Drain the queue and complete without waiting. There should no more messages added to the queue
                // as the dispatch method will see the failure
                events.clear();
            }
    
            protected abstract void handle(T message);
    
            public abstract List<Object> getListeners();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     * ```
     * fun test(m: MutableList<String>) {
     *   m += "a" // A simple `KaFunctionCall` to `MutableList.plusAssign`, not a `KaVariableAccessCall`. However, the dispatch receiver of this
     *            // call, `m`, is a simple read access represented as a `KaVariableAccessCall`
     * }
     * ```
     */
    public class KaCompoundVariableAccessCall(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

        private final Set<String> interceptedCallSiteNames = new HashSet<>();
    
        // There is no information about the type returned by the constructor invocation in the bytecode, so the
        // dynamic dispatch has to happen somewhere. Wrapping the dispatch logic into the CallInterceptor allows
        // to reuse the common MethodHandle decoration routine in maybeDecorateIndyCallSite instead of using a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

            event.setTrace(trace);
            event.setArtifact(artifact);
            event.setException(exception);
    
            repositoryEventDispatcher.dispatch(event.build());
        }
    
        private void invalidDescriptor(
                RepositorySystemSession session, RequestTrace trace, Artifact artifact, Exception exception) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            Object result;
            try {
                LOGGER.debug("Connected to daemon {}. Dispatching request {}.", connection.getDaemon(), build);
                connection.dispatch(build);
                result = connection.receive();
            } catch (StaleDaemonAddressException e) {
                LOGGER.debug("Connected to a stale daemon address.", e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top