Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for node_idx (0.39 sec)

  1. cmd/admin-handlers-pools.go

    	// concurrent rebalance-start commands.
    	if ep := globalEndpoints[0].Endpoints[0]; !ep.IsLocal {
    		for nodeIdx, proxyEp := range globalProxyEndpoints {
    			if proxyEp.Endpoint.Host == ep.Host {
    				if proxyRequestByNodeIndex(ctx, w, r, nodeIdx) {
    					return
    				}
    			}
    		}
    	}
    
    	pools, ok := objectAPI.(*erasureServerPools)
    	if !ok || len(pools.serverPools) == 1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util.cc

      path.resize(path_size);
      for (int32_t node_id : path) {
        string ascii_art;
        if (node_id == dst) {
          ascii_art = "+-> ";
        } else if (node_id != src) {
          ascii_art = "|   ";
        } else {
          ascii_art = "+-- ";
        }
        absl::StrAppend(&description, ascii_art, node_name(node_id), "\n");
      }
      return description;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        } else {
          internal_name += object_names_[node_id][0];
        }
        pretty_symbol_table_name_[node_id] = SaveString(internal_name);
      }
    }
    
    llvm::ArrayRef<llvm::StringRef> ObjectNames::GetExportedNames(
        int node_id) const {
      auto it = exported_names_.find(node_id);
      if (it != exported_names_.end()) {
        return it->second;
      }
      return {};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. pkg/apis/storage/validation/validation_test.go

    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// driver name: numbers
    		ObjectMeta: metav1.ObjectMeta{Name: "foo3"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "1io-kubernetes-storage-2-csi-driver3",
    				NodeID:       nodeID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/debug_test.go

    				}
    				if (ss.ExtensionConfigSent != "") != wantSent {
    					errorHandler("wanted ExtesionConfigSent set %v got %v for %v", wantSent, ss.ExtensionConfigSent, nodeID)
    				}
    				if (ss.ExtensionConfigAcked != "") != wantAcked {
    					errorHandler("wanted ExtensionConfigAcked set %v got %v for %v", wantAcked, ss.ExtensionConfigAcked, nodeID)
    				}
    				return
    			}
    		}
    		errorHandler("node id %v not found", nodeID)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    Status TFSavedModelAPI::GetFunctions(
        int node_id,
        absl::flat_hash_map<std::string, ConcreteFunction*>* functions) {
      const auto& nodes = bundle_.saved_object_graph().nodes();
      if (node_id >= nodes.size()) {
        return errors::OutOfRange(
            "node_id ", node_id,
            " not found.  Maximum node ID: ", nodes.size() - 1);
      }
      const SavedObject* current_node = &nodes.Get(node_id);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. pkg/registry/registrytest/node.go

    	return r.Err
    }
    
    func (r *NodeRegistry) GetNode(ctx context.Context, nodeID string, options *metav1.GetOptions) (*api.Node, error) {
    	r.Lock()
    	defer r.Unlock()
    	if r.Err != nil {
    		return nil, r.Err
    	}
    	for _, node := range r.Nodes.Items {
    		if node.Name == nodeID {
    			return &node, nil
    		}
    	}
    	return nil, errors.NewNotFound(api.Resource("nodes"), nodeID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pkg/registry/storage/csinode/strategy_test.go

    	emptyAllocatable := &storage.CSINode{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "foo",
    		},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{
    				{
    					Name:         "valid-driver-name",
    					NodeID:       "valid-node",
    					TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    				},
    			},
    		},
    	}
    
    	volumeLimitsCases := []struct {
    		name     string
    		obj      *storage.CSINode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // only scope "stage".  The semantic of scope "unstage" is preserved although
    // scope "stage" is later appended.  As a result, Node_X and Node_Y will be put
    // into different clusters.
    //
    //                Unstage -> Node_Y (scope "unstage & stage")
    //                              |
    //                              V
    //  Node_X (scope "stage") -> Stage
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/proxy/node.go

    		n.logger.Info("Setting current PodCIDRs", "podCIDRs", podCIDRs)
    		n.podCIDRs = podCIDRs
    		return
    	}
    	if !reflect.DeepEqual(n.podCIDRs, podCIDRs) {
    		n.logger.Error(nil, "Using NodeCIDR LocalDetector mode, current PodCIDRs are different than previous PodCIDRs, restarting",
    			"node", klog.KObj(node), "newPodCIDRs", podCIDRs, "oldPodCIDRs", n.podCIDRs)
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top