Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 412 for dispatchTo (0.21 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/PhasedBuildActionResult.java

    import org.gradle.tooling.internal.provider.serialization.SerializedPayload;
    
    import java.io.Serializable;
    
    /**
     * Result of one of the actions of a phased action. Must be serializable since will be dispatched to client.
     */
    public class PhasedBuildActionResult implements Serializable {
        public final SerializedPayload result;
        public final PhasedActionResult.Phase phase;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/select.go

    		}
    
    		init = append(init, r)
    	}
    
    	if dflt != nil {
    		ir.SetPos(dflt)
    		dispatch(ir.NewBinaryExpr(base.Pos, ir.OLT, chosen, ir.NewInt(base.Pos, 0)), dflt)
    	}
    	for i, cas := range casorder {
    		ir.SetPos(cas)
    		if i == len(casorder)-1 {
    			dispatch(nil, cas)
    			break
    		}
    		dispatch(ir.NewBinaryExpr(base.Pos, ir.OEQ, chosen, ir.NewInt(base.Pos, int64(i))), cas)
    	}
    
    	return init
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubBackedObjectConnectionTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub
    
    import org.gradle.api.GradleException
    import org.gradle.internal.dispatch.MethodInvocation
    import org.gradle.internal.dispatch.StreamCompletion
    import org.gradle.internal.remote.internal.ConnectCompletion
    import org.gradle.internal.remote.internal.TestConnection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Call.kt

       */
      @Throws(IOException::class)
      fun execute(): Response
    
      /**
       * Schedules the request to be executed at some point in the future.
       *
       * The [dispatcher][OkHttpClient.dispatcher] defines when the request will run: usually
       * immediately unless there are several other requests currently being executed.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/ConnectionSetTest.groovy

            def outgoingMessage = new ChannelMessage(channel, "payload")
    
            given:
            def incoming = incomingQueue.getChannel(channel).newEndpoint()
            outgoingQueue.dispatch(outgoingMessage)
    
            when:
            connections.noFurtherConnections()
            def messages = []
            incoming.take(messages)
    
            then:
            messages.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/DispatchException.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.dispatch;
    
    public class DispatchException extends RuntimeException {
        public DispatchException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 817 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsHelper.java

    import javax.annotation.Nullable;
    
    @NonNullApi
    public class InstrumentedGroovyCallsHelper {
        /**
         * Executes the given {@code callable} in the context of an entry point produced from entering a dynamically dispatched
         * call described by the {@code callableName} and {@code kind}
         * from a class identified by {@code consumerClass}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// If not specified, the carp will not have a domainname at all.
    	// +optional
    	Subdomain string
    	// If specified, the carp will be dispatched by specified scheduler.
    	// If not specified, the carp will be dispatched by default scheduler.
    	// +optional
    	SchedulerName string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // CarpList is a list of Carps.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  9. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

        val connection = server.url("/").toUrl().openConnection() as HttpURLConnection
        connection.readTimeout = 500
        try {
          connection.responseCode
          fail<Unit>()
        } catch (expected: SocketTimeoutException) {
          // Expected.
        }
    
        // Shutting down the server should unblock the dispatcher.
        server.shutdown()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/StreamCompletion.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.dispatch;
    
    public interface StreamCompletion {
        /**
         * Signals the end of the stream of messages.
         */
        void endStream();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 782 bytes
    - Viewed (0)
Back to top