Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Stateless (0.13 sec)

  1. internal/grid/manager.go

    }
    
    /*
    // RegisterStateless will register a stateless handler that serves
    // []byte -> stream of ([]byte, error) requests.
    func (m *Manager) RegisterStateless(id HandlerID, h StatelessHandler) error {
    	if !id.valid() {
    		return ErrUnknownHandler
    	}
    	if m.handlers.hasAny(id) && !id.isTestHandler() {
    		return ErrHandlerAlreadyExists
    	}
    
    	m.handlers.stateless[id] = &h
    	return nil
    }
    */
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

            "tf.OpB"() : () -> ()
            tf_executor.yield
          }
          tf_executor.fetch
        }
        func.return
      }
    }
    
    // -----
    
    // Check that we report an unexpected dependency path between two stateless ops.
    func.func @two_stateless_ops() -> () {
      tf_executor.graph {
        // expected-warning@+1 {{unexpected control dependency path: path 0, node 0 (source)}}
        %island1 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/api/internal/ReusableAction.java

     * limitations under the License.
     */
    package org.gradle.api.internal;
    
    /**
     * A marker interface for rules which can be safely reused because they are either
     * stateless, or effectively immutable. Ideally this should be inferred, which is
     * why the interface is internal.
     */
    public interface ReusableAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 893 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantDerivationStrategy.java

    package org.gradle.internal.component.external.model;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.component.model.ModuleConfigurationMetadata;
    
    /**
     * Variant derivation strategies should be stateless. If they aren't singletons,
     * implementors must make sure that equals/hashcode returns true for all instances.
     */
    public interface VariantDerivationStrategy {
        boolean derivesVariants();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/README.md

    write it to a target file.
    
    The `CppFileRenderer` is the main renderer used by the generator; it renders an
    entire file. The `CppConfig` defines if it is operating in header or source
    mode.
    
    "Views" are stateless and intended to be low-level building blocks: a direct
    language-specific representation of the model classes. For example, an `ArgView`
    is initialized from an `ArgSpec` (which was created initially from an `ArgDef`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/examples/prebind/prebind.go

    type StatelessPreBindExample struct{}
    
    var _ framework.PreBindPlugin = StatelessPreBindExample{}
    
    // Name is the name of the plugin used in Registry and configurations.
    const Name = "stateless-prebind-plugin-example"
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (sr StatelessPreBindExample) Name() string {
    	return Name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. maven-core/src/main/java/org/apache/maven/plugin/LegacySupport.java

     */
    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
         * variable) is our best effort to record any state that is required to enable proper delegation.
         *
         * @param session The currently active session, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

     * These instances replace original CallSites where the calls are to be intercepted.
     * <p>
     * Descendants of this class should be thread-safe, making a stateless implementation is perfect.
     */
    public interface CallInterceptor {
    
        /**
         * Called when the method/constructor/property read is intercepted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      // either TensorFlow StatelessX or X op depending on the additional attribute.
      if (llvm::isa<mlir::TF::CaseOp, mlir::TF::IfOp, mlir::TF::WhileOp>(inst)) {
        auto stateless = inst->getAttrOfType<mlir::BoolAttr>("is_stateless");
        if (stateless && stateless.getValue())
          *node_def->mutable_op() = "Stateless" + node_def->op();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top