Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for stateful (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

        "means that a shape or dimension argument could not be evaluated at "
        "compile time, usually because the value of the argument depends on a "
        "parameter to the computation, on a variable, or on a stateful operation "
        "such as a random number generator.";
    
    // TODO(b/282188914) remove the operations to skip once tests are fixed.
    static const DenseSet<mlir::TypeID>* operations_to_skip =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/ByteSink.java

    import java.io.Writer;
    import java.nio.charset.Charset;
    
    /**
     * A destination to which bytes can be written, such as a file. Unlike an {@link OutputStream}, a
     * {@code ByteSink} is not an open, stateful stream that can be written to and closed. Instead, it
     * is an immutable <i>supplier</i> of {@code OutputStream} instances.
     *
     * <p>{@code ByteSink} provides two kinds of methods:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/ByteSink.java

    import java.io.Writer;
    import java.nio.charset.Charset;
    
    /**
     * A destination to which bytes can be written, such as a file. Unlike an {@link OutputStream}, a
     * {@code ByteSink} is not an open, stateful stream that can be written to and closed. Instead, it
     * is an immutable <i>supplier</i> of {@code OutputStream} instances.
     *
     * <p>{@code ByteSink} provides two kinds of methods:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/inlining.mlir

        }
        tf_executor.fetch %1#1, %1#1 : tensor<2xi32>, tensor<2xi32>
      }
      func.return %0#1, %0#1 : tensor<2xi32>, tensor<2xi32>
    }
    
    // Test that stateful TF ops that don't have do not duplicate trait can be
    // inlined.
    
    func.func private @simple_callee_var() -> tensor<2xi32>  {
      %cst = "tf.Const"() { value = dense<2> : tensor<2xi32> } : () -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/CharSink.java

    import java.util.Iterator;
    import java.util.stream.Stream;
    
    /**
     * A destination to which characters can be written, such as a text file. Unlike a {@link Writer}, a
     * {@code CharSink} is not an open, stateful stream that can be written to and closed. Instead, it
     * is an immutable <i>supplier</i> of {@code Writer} instances.
     *
     * <p>{@code CharSink} provides two kinds of methods:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/README.md

    understand the language at the statement/directive level and target a functional
    section of the output, such as a block comment or an entire method or file.
    
    Other differences between views and renderers:
    
    *   Renderers are stateful, modifying a referenced SourceCode. Views are
        stateless and their public methods are all const, returning strings.
    *   Renderers are context-dependent, e.g. a method signature will include
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/CharSink.java

    import java.io.Reader;
    import java.io.Writer;
    import java.nio.charset.Charset;
    
    /**
     * A destination to which characters can be written, such as a text file. Unlike a {@link Writer}, a
     * {@code CharSink} is not an open, stateful stream that can be written to and closed. Instead, it
     * is an immutable <i>supplier</i> of {@code Writer} instances.
     *
     * <p>{@code CharSink} provides two kinds of methods:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

    /**
     * Resolves a POM from its coordinates. During the build process, the
     * {@link org.apache.maven.model.building.ModelBuilder} will add any relevant repositories to the model resolver. In
     * other words, the model resolver is stateful and should not be reused across multiple model building requests.
     *
     */
    public interface ModelResolver {
    
        /**
         * Tries to resolve the POM for the specified coordinates.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. tests/testdata/config/none.yaml

    # Not supported/require iptables:
    # - TCP with 'addresses' field - needs iptables
    # - resolution:NONE - 'original DST' - external services (for example https, ServiceEntry+address), stateful sets
    # - TCP with resolution:DNS - same issue
    # -
    
    # Local ServiceEntry (meshex, test) - the tests will use the IPs defined in the service when connecting.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            val buildOperationRunner = mock<BuildOperationRunner> {
                on { call<Unit>(any()) } doReturn Unit
            }
            val stateFile = testDirectoryProvider.file("stateFile")
    
            // when:
            buildOperationRunner.withStoreOperation("key") {
                StoreResult(stateFile, null)
            }
    
            // then:
            val runnableBuildOperation = ArgumentCaptor.forClass(RunnableBuildOperation::class.java)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top