Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 299 for stateful (0.13 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/StatefulListener.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a listener interface to indicate that its events are stateful.
     *
     * <p>The listener infrastructure will ensure that a listener of this type will either receive all events, or no events.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    // merging same input values if they're identical. These optimizations are
    // desirable but not for those TFLite ops which have variable tensors as inputs.
    // Yes, they have identical input values, but those identical values are
    // "stateful", their values can change during invocations.
    //
    // A typical example is unidirectional_sequence_lstm have two variable tensor
    // inputs: activation state & cell state. They may have same initial values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/statefulset/stateful_set.go

    	// podListerSynced returns true if the pod shared informer has synced at least once
    	podListerSynced cache.InformerSynced
    	// setLister is able to list/get stateful sets from a shared informer's store
    	setLister appslisters.StatefulSetLister
    	// setListerSynced returns true if the stateful set shared informer has synced at least once
    	setListerSynced cache.InformerSynced
    	// pvcListerSynced returns true if the pvc shared informer has synced at least once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/DefaultListenerManager.java

            private final Class<T> type;
            private final ListenerDispatch dispatch;
            private final ListenerDispatch dispatchNoLogger;
            private final boolean stateful;
    
            private volatile ProxyDispatchAdapter<T> source;
            private final Set<ListenerDetails> listeners = new LinkedHashSet<ListenerDetails>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top