Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for stateful (0.54 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Serializers.java

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize;
    
    public class Serializers {
        public static <T> StatefulSerializer<T> stateful(final Serializer<T> serializer) {
            return new StatefulSerializerAdapter<T>(serializer);
        }
    
        private static class StatefulSerializerAdapter<T> implements StatefulSerializer<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. releasenotes/notes/inbound-passthrough.yaml

          * Applications that bind to `<POD_IP>` will not be exposed to external pods.
    
          The latter is a common source of friction when adopting Istio, in particular with stateful services where this is common.
    
          The new behavior instead forwards the request as is. This matches the behavior a user would see without Istio installed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/guarantee-all-funcs-one-use.mlir

    module {
      func.func private @f() {
        func.call @g() : () -> ()
        func.return
      }
      func.func private @g() {
        func.call @f() : () -> ()
        func.return
      }
    }
    
    // -----
    // Test stateful and stateless partitioned calls.
    // CHECK-LABEL: func @f
    func.func @f() {
      // CHECK: "tf.PartitionedCall"() <{config = "",  config_proto = "", executor_type = "", f = @g}> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/LegacySupport.java

     *
     * @since 3.0
     */
    public interface LegacySupport {
    
        /**
         * Sets the currently active session. Some legacy components are basically stateful and their API is missing
         * parameters that would be required to delegate to a stateless component. Saving the session (in a thread-local
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. internal/ringbuffer/README.md

    Either side can use `rb.CloseWithError(err error)` to signal an error and close the ring buffer. 
    Any reads or writes will return the error on next call.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_while_results.mlir

    // - the corresponding first block arguments are unused (except for `tf.OpB`
    //   which is the defining op of the first result and will be pruned)
    // - `tf.OpB` is not stateful
    // - `tf.OpB` has only one result, and that result is only passed through to the
    //   unused result of the while loop
    
    // CHECK-LABEL: remove_first_result
    // CHECK:       tf.WhileRegion
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 20:25:31 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  7. internal/grid/msg.go

    	OpMuxServerMsg
    
    	// OpUnblockSrvMux contains a message that a server mux is unblocked with one.
    	// Only Stateful streams has flow control.
    	OpUnblockSrvMux
    
    	// OpUnblockClMux contains a message that a client mux is unblocked with one.
    	// Only Stateful streams has flow control.
    	OpUnblockClMux
    
    	// OpAckMux acknowledges a mux was created.
    	OpAckMux
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 28 19:22:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonTcpServerConnector.java

                    public void execute(ConnectCompletion completion) {
                        RemoteConnection<Message> remoteConnection;
                        try {
                            remoteConnection = completion.create(Serializers.stateful(serializer));
                        } catch (UncheckedIOException e) {
                            connectionErrorHandler.run();
                            throw e;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

     * Reuses these prefixes and suffixes to efficiently store names or parts of names it has seen before.
     *
     * This class is stateful. Use a new one for each serialization/deserialization attempt.
     */
    public class HierarchicalNameSerializer extends AbstractSerializer<String> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiChannelQueueTest.groovy

            endpoint1.take(messages1)
            endpoint2.take(messages2)
    
            then:
            messages1 == [message1, message2]
            messages2 == [message2]
        }
    
        def "forwards most recent stateful broadcast messages to all new queues"() {
            def id1 = new ChannelIdentifier("channel1")
            def message1 = broadcast()
            def message2 = broadcast()
            def message3 = new EndOfStream()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top