Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 173 for central (0.17 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      TF_RETURN_IF_ERROR(FindOutputImageOfEdgeDst(
          src_func_id, dst_func_id, node_images, edge->dst(), &dst_image));
    
      // If this is a control edge then copy it and return. Lift control edges onto
      // the enclosing call operator.
      if (edge->IsControlEdge()) {
        // Add the control edge, if we have not already added it, using the images
        // determined above (potentially call operators or RecvAtHost/SendFromHost).
        if (edges_added
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      return nullptr;
    }
    
    // Replaces all `tf.VarIsInitializedOp` in a block with a constant true.
    // TODO(b/171039585): Replace this with proper analysis of
    // `tf.VarIsInitializedOp` in regards to resource writes and control flow.
    void SetAllVarIsInitializedToTrue(Block* block) {
      auto builder = OpBuilder::atBlockBegin(block);
      TF::ConstOp const_true = nullptr;
      for (auto op :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    	"strconv"
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	xdsfault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/fault/v3"
    	cors "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/cors/v3"
    	xdshttpfault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/fault/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

    
    ## Version 3.14.3
    
    _2019-09-10_
    
     *  Fix: Don't lose HTTP/2 flow control bytes when incoming data races with a stream close. If this
        happened enough then eventually the connection would stall.
    
     *  Fix: Acknowledge and apply inbound HTTP/2 settings atomically. Previously we had a race where we
        could use new flow control capacity before acknowledging it, causing strict HTTP/2 servers to
        fail the call.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/adminlte.min.js.map

     }\n\n  const Selector = {\n    CONTROL_SIDEBAR: '.control-sidebar',\n    CONTROL_SIDEBAR_CONTENT: '.control-sidebar-content',\n    DATA_TOGGLE: '[data-widget=\"control-sidebar\"]',\n    CONTENT: '.content-wrapper',\n    HEADER: '.main-header',\n    FOOTER: '.main-footer',\n  }\n\n  const ClassName = {\n    CONTROL_SIDEBAR_ANIMATE: 'control-sidebar-animate',\n    CONTROL_SIDEBAR_OPEN: 'control-sidebar-open',\n    CONTROL_SIDEBAR_SLIDE: 'control-sidebar-slide-open',\n    LAYOUT_FIXED: 'layout-fixed',\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  6. .bazelrc

    #     nonccl:       Disable nccl support.
    #
    #
    # Remote build execution options (only configured to work with TF team projects for now.)
    #     rbe_base:  General RBE options shared by all flavors.
    #     rbe_linux: General RBE options used on all linux builds.
    #     rbe_win_base:   General RBE options used on all Windows builds. Not to be used standalone.
    #     rbe_win_clang:  Options specific to compiling using Clang.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	fault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/fault/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	redis "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/redis_proxy/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        }
      }
    }
    
    // Decompose control flow in `device_cluster` into device computation and host
    // (outside compiled) computation into two separate control flow ops with
    // communication between the device/host for data dependencies.  Both device and
    // host control flow initially remain within `device_cluster` and a subsequency
    // call to MoveToHostSingleCluster moves the host side control flow to the host
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    == Test execution order in TestNG
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    				// Complement the relations.
    				r = (lt | eq | gt) ^ r
    			}
    
    			// Check for i2 < max or max > i2.
    			var max *Value
    			if r == lt && control.Args[0] == i2 {
    				max = control.Args[1]
    			} else if r == gt && control.Args[1] == i2 {
    				max = control.Args[0]
    			} else {
    				continue
    			}
    
    			// Check condition 4 now that we have a
    			// candidate max. For this we can query the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top