Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 201 for Views (0.09 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    
    #include "tensorflow/c/experimental/ops/gen/model/arg_spec.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Table.java

     * worse performance than data access by row key.
     *
     * <p>The methods returning collections or maps always return views of the underlying table.
     * Updating the table can change the contents of those collections, and updating the collections
     * will change the table.
     *
     * <p>All methods that modify the table are optional, and the views returned by the table may or may
     * not be modifiable. When modification isn't supported, those methods will throw an {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/BUILD

        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp:__pkg__"],
        deps = [
            "//tensorflow/c/experimental/ops/gen/common",
            "//tensorflow/c/experimental/ops/gen/cpp/views",
            "//tensorflow/core:framework_internal",
            "//tensorflow/core:lib",
            "//tensorflow/core:lib_internal",
            "@com_google_absl//absl/strings",
        ],
        alwayslink = 1,
    )
    
    tf_cc_tests(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 21:13:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableTable.java

      }
    
      /**
       * Returns an immutable copy of the provided table.
       *
       * <p>The {@link Table#cellSet()} iteration order of the provided table determines the iteration
       * ordering of all views in the returned table. Note that some views of the original table and the
       * copied table may have different iteration orders. For more control over the ordering, create a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/renderers/op_comment_renderer.h

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class OpCommentRenderer : public Renderer {
     public:
      explicit OpCommentRenderer(RendererContext context, OpView op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/op_comment_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    OpCommentRenderer::OpCommentRenderer(RendererContext context, OpView op)
        : Renderer(context), op_(op) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/views/arg_type_view.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_type_view.h"
    
    #include "tensorflow/c/experimental/ops/gen/model/arg_type.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

       * navigable map is accomplished through the returned navigable map (or its views).
       *
       * <p>It is imperative that the user manually synchronize on the returned navigable map when
       * iterating over any of its collection views, or the collections views of any of its {@code
       * descendingMap}, {@code subMap}, {@code headMap} or {@code tailMap} views.
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

       * navigable map is accomplished through the returned navigable map (or its views).
       *
       * <p>It is imperative that the user manually synchronize on the returned navigable map when
       * iterating over any of its collection views, or the collections views of any of its {@code
       * descendingMap}, {@code subMap}, {@code headMap} or {@code tailMap} views.
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/proxy_view_test.go

    	"istio.io/istio/pkg/network"
    )
    
    func TestProxyView(t *testing.T) {
    	cases := []struct {
    		name        string
    		networkView []string
    		network     string
    		visible     bool
    	}{
    		{
    			name:    "no views",
    			network: "network1",
    			visible: true,
    		},
    		{
    			name:        "network visible",
    			networkView: []string{"network1"},
    			network:     "network1",
    			visible:     true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top