Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for node_ (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

          }
        }
      }
    
      // Use name mapper to uniquely name all ops in the module as export to
      // TensorFlow graph may change node names. These op names here doesn't need to
      // match the actual names in the graph as this sets original node name
      // attribute for all the relevant nodes.
      tensorflow::OpOrArgLocNameMapper name_mapper;
      MLIRContext* ctx = module.getContext();
      for (Region* region : regions_with_token) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads.go

    	con.s = s
    	return xds.Stream(con)
    }
    
    // update the node associated with the connection, after receiving a packet from envoy, also adds the connection
    // to the tracking map.
    func (s *DiscoveryServer) initConnection(node *core.Node, con *Connection, identities []string) error {
    	// Setup the initial proxy metadata
    	proxy, err := s.initProxyMetadata(node)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/runtime/tracestack.go

    	// Emit stack event.
    	w.byte(byte(traceEvStack))
    	w.varint(uint64(node.id))
    	w.varint(uint64(len(frames)))
    	for _, frame := range frames {
    		w.varint(uint64(frame.PC))
    		w.varint(frame.funcID)
    		w.varint(frame.fileID)
    		w.varint(frame.line)
    	}
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_client_test.go

    		expectedAccessibleTopology map[string]string
    		mustFail                   bool
    		err                        error
    	}{
    		{
    			name:                       "test ok",
    			expectedNodeID:             "node1",
    			expectedMaxVolumePerNode:   16,
    			expectedAccessibleTopology: map[string]string{"com.example.csi-topology/zone": "zone1"},
    		},
    		{
    			name:     "grpc error",
    			mustFail: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/cidrallocator.go

    	"k8s.io/klog/v2"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/util/iptree"
    	netutils "k8s.io/utils/net"
    )
    
    // MetaAllocator maintains a Tree with the ServiceCIDRs containing an IP Allocator
    // on the nodes. Since each allocator doesn't stored the IPAddresses because it reads
    // them from the informer cache, it is cheap to create and delete IP Allocators.
    // MetaAllocator forwards the request to any of the internal allocators that has free
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. cmd/tier.go

    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    	randInterval := func() time.Duration {
    		return time.Duration(r.Float64() * 5 * float64(time.Second))
    	}
    
    	// To avoid all MinIO nodes reading the tier config object at the same
    	// time.
    	t := time.NewTimer(tierCfgRefresh + randInterval())
    	defer t.Stop()
    	for {
    		select {
    		case <-ctx.Done():
    			return
    		case <-t.C:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    	// Taints specifies the taints the Node API object should be registered with. If this field is unset, i.e. nil,
    	// it will be defaulted with a control-plane taint for control-plane nodes. If you don't want to taint your control-plane
    	// node, set this field to an empty slice, i.e. `taints: []` in the YAML file. This field is solely used for Node registration.
    	Taints []v1.Taint
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      auto cast = dyn_cast<TF::CastOp>(op);
      if (!cast) return false;
      return IsResource(cast.getX());
    }
    
    // Removes passthrough ops in the block. The device computation does not need
    // such nodes to carry information.
    void RemovePassthroughOp(Block &block) {
      for (auto &op : llvm::make_early_inc_range(block)) {
        if (isa<TF::IdentityOp, TF::IdentityNOp>(op) || IsCastOfResource(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

              TPUVariableRuntimeReformattingPass> {
      void runOnOperation() final;
    };
    
    // Returns the earlier value of which `v` is an identity. If `skipped` is
    // provided, it will be used to store the identity nodes skipped.
    Value SkipIdentity(Value v, bool allow_other_use,
                       llvm::SmallPtrSet<Operation*, 4>* skipped = nullptr) {
      while (auto result = mlir::dyn_cast<OpResult>(v)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. pkg/registry/discovery/endpointslice/strategy_test.go

    		expectedNodeNames sets.String
    	}{
    		{
    			name: "2 nodes",
    			endpointSlice: &discovery.EndpointSlice{
    				Endpoints: []discovery.Endpoint{
    					{DeprecatedTopology: map[string]string{corev1.LabelHostname: "node-1"}},
    					{DeprecatedTopology: map[string]string{corev1.LabelHostname: "node-2"}},
    				},
    			},
    			expectedNodeNames: sets.NewString("node-1", "node-2"),
    		},
    		{
    			name: "duplicate values",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top