Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for stateful (0.13 sec)

  1. tensorflow/compiler/jit/ops/xla_ops.cc

        .Attr("Nresources: int >= 0")
        .Output("results: Tresults")
        .Attr("Tresults: list(type) >= 0")
        .Attr("function: func")
        // XLA random-number generation ops are stateful.
        // TODO(phawkins): create stateful and non-stateful variants of XlaLaunch.
        .SetIsStateful()
        .Doc("XLA Launch Op. For use by the XLA JIT only.");
    
    REGISTER_OP("XlaLaunchV2")
        .Input("args: Targs")
        .Output("results: Tresults")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/SerializersTest.groovy

            def serializer = Mock(Serializer)
            def decoder = Mock(Decoder)
            def encoder = Mock(Encoder)
    
            given:
            def stateful = Serializers.stateful(serializer)
            def reader = stateful.newReader(decoder)
            def writer = stateful.newWriter(encoder)
    
            when:
            def result1 = reader.read()
            def result2 = reader.read()
    
            then:
            result1 == "one"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

    // TFL op interface for stateful operands.
    
    def TFL_StatefulOp : OpInterface<"StatefulOpInterface"> {
      let description = [{
        Interface for ops that are stateful and need to identify stateful operands.
    
        Stateful operands correspond to TF's variables semantics. An op that has 1
        or more stateful operands is a stateful op.
      }];
    
      let methods = [
        InterfaceMethod<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

        def services = new DefaultServiceRegistry()
    
        def setup() {
            services.add(listenerManager)
        }
    
        def "automatically creates and registers stateful listener when first event is broadcast"() {
            def created = Mock(Runnable)
            def listener = Mock(TestListener)
    
            when:
            services.addProvider(new ServiceRegistrationProvider() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentGraphResolveState.java

     */
    public interface ExternalComponentGraphResolveState extends ComponentGraphResolveState {
    
        /**
         * @deprecated Try to avoid using this. This method exposes legacy stateful metadata. Usages should be
         * replaced by using the stateful types like {@link ComponentGraphResolveState} and
         * {@link org.gradle.internal.component.model.ComponentArtifactResolveState}.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top