Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for Stateless (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/PersistentModuleSource.java

         *
         * @return the source id
         */
        int getCodecId();
    
        /**
         * A codec will be used by the metadata serializer to encode
         * and decode this module source. Codecs must be stateless as
         * they are shared between several metadata instances.
         *
         * Codecs must implement equals/hashcode.
         */
        interface Codec<T extends PersistentModuleSource> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/optimize_tf_control_flow_side_effect.mlir

      func.return %0, %1 : tensor<i32>, tensor<i32>
    }
    
    // -----
    
    // Set stateless if the body contains only read-only side-effecting ops.
    
    func.func private @cond(%arg: tensor<i32>, %handle: tensor<!tf_type.resource>) -> tensor<i1> {
      %0 = "tf.Const"() {value = dense<16> : tensor<i32> } : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 01:15:55 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/xla_rewrite.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass converts stateful and stateless partitioned calls
    // with _xla_compile_device_type attribute to XLA launch ops.
    
    #include <stack>
    
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

      if (op->hasTrait<OpTrait::TF::CannotDuplicate>()) return false;
    
      // If the op has no memory side effects, it can be duplicated.
      if (isMemoryEffectFree(op)) return true;
    
      // If the op is marked stateless using the `is_stateless` attribute, that
      // attribute determines if the op can be duplicated.
      if (auto is_stateless = op->getAttrOfType<BoolAttr>("is_stateless"))
        return is_stateless.getValue();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/escape/Escaper.java

     * resulting XML document is parsed, the parser API will return this text as the original literal
     * string {@code "Foo<Bar>"}.
     *
     * <p>An {@code Escaper} instance is required to be stateless, and safe when used concurrently by
     * multiple threads.
     *
     * <p>Because, in general, escaping operates on the code points of a string and not on its
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 16:02:17 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactory.java

                    parser.describe(visitor);
                }
            };
        }
    
        @Nonnull
        @Override
        public CapabilityNotationParser create() {
            // Currently the converter is stateless, doesn't need any external context, so for performance we return a singleton
            return versionIsRequired ? STRICT_CONVERTER : LENIENT_CONVERTER;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

                    httpExchange.sendResponseHeaders(200, 0);
                    ProcessBuilder builder = new ProcessBuilder();
                    final Process process = builder.command("git", "upload-pack", "--stateless-rpc", backingRepo.getWorkTree().getAbsolutePath()).redirectErrorStream(true).start();
    
                    InputStream instream = new GZIPInputStream(httpExchange.getRequestBody());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleSource.java

    package org.gradle.model;
    
    import org.gradle.api.Incubating;
    
    /**
     * A marker type for a class that is a collection of rules.
     * <p>
     * A rule source is not used like a regular Java object.
     * It is a stateless container of methods and possibly constants.
     * <p>
     * Please consult the “Rule based model configuration” chapter of the Gradle User Manual for general information about “rules”.
     *
     * <h3>Rule methods</h3>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/cases.go

    func Title(t language.Tag, opts ...Option) Caser {
    	return Caser{makeTitle(t, getOpts(opts...))}
    }
    
    // Fold returns a Caser that implements Unicode case folding. The returned Caser
    // is stateless and safe to use concurrently by multiple goroutines.
    //
    // Case folding does not normalize the input and may not preserve a normal form.
    // Use the collate or search package for more convenient and linguistically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. internal/grid/handlers.go

    	// StatelessHandlerFn must handle incoming stateless request.
    	// A non-nil error value will be returned as RemoteErr(msg) to client.
    	StatelessHandlerFn func(ctx context.Context, payload []byte, resp chan<- []byte) *RemoteErr
    
    	// StatelessHandler is handlers for one to many requests,
    	// where responses may be dropped.
    	// Stateless requests provide no incoming stream and there is no flow control
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top