Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 153 for node_idx (4.18 sec)

  1. pkg/volume/csi/csi_client_test.go

    		if nodeID != tc.expectedNodeID {
    			t.Errorf("expected nodeID: %v; got: %v", tc.expectedNodeID, nodeID)
    		}
    
    		if maxVolumePerNode != tc.expectedMaxVolumePerNode {
    			t.Errorf("expected maxVolumePerNode: %v; got: %v", tc.expectedMaxVolumePerNode, maxVolumePerNode)
    		}
    
    		if !reflect.DeepEqual(accessibleTopology, tc.expectedAccessibleTopology) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // CHECK in this accessor.
      //
      // Returns nullptr if `node_id` is not a compilation candidate.
      Cluster* GetClusterForCyclesGraphNode(int node_id) {
        // We have to check `graph_->FindNodeId(node) == nullptr` because we add all
        // nodes in [0, graph_->num_node_ids()) to the cycle detection graph but the
        // TF graph may be missing some node ids.
        if (node_id >= graph_->num_node_ids() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. pkg/adsc/delta.go

    		c.errChan <- err
    	}
    }
    
    func (c *Client) nodeID() string {
    	return nodeID(&c.cfg.Config)
    }
    
    func (c *Client) node() *core.Node {
    	return buildNode(&c.cfg.Config)
    }
    
    func (c *Client) update(t string, sub, unsub set.Set[string], d *discovery.DeltaDiscoveryResponse) {
    	req := &discovery.DeltaDiscoveryRequest{
    		Node: &core.Node{
    			Id: c.nodeID(),
    		},
    		TypeUrl:       t,
    		ResponseNonce: d.Nonce,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/runtime/runtime.cc

        // The child's name describes the name of the edge that connects to the
        // parent object. This name will be the name of the object stored in the
        // generated module.
        auto& child_node = nodes.at(child.node_id());
        auto child_name = child.local_name().c_str();
    
        if (child_node.kind_case() == tensorflow::SavedObject::kFunction) {
          Function tf_function;
          for (const std::string& fn_name :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_client.go

    	}, nil
    }
    
    func (c *csiDriverClient) NodeGetInfo(ctx context.Context) (
    	nodeID string,
    	maxVolumePerNode int64,
    	accessibleTopology map[string]string,
    	err error) {
    	klog.V(4).InfoS(log("calling NodeGetInfo rpc"))
    
    	var getNodeInfoError error
    	nodeID, maxVolumePerNode, accessibleTopology, getNodeInfoError = c.nodeGetInfoV1(ctx)
    	if getNodeInfoError != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  6. pkg/bootstrap/option/instances.go

    	return newDurationOption("connect_timeout", value)
    }
    
    func Cluster(value string) Instance {
    	return newOption("cluster", value)
    }
    
    func NodeID(value string) Instance {
    	return newOption("nodeID", value)
    }
    
    func NodeType(value string) Instance {
    	ntype := strings.Split(value, "~")[0]
    	return newOption("nodeType", ntype)
    }
    
    func XdsType(value string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

        }
    
        private EdgeState edge(NodeState from, boolean strict = true, String name = null, NodeState to = nextNode(), endorsing = false) {
            String moduleName = name ? name : "${from.nodeId}-${to.nodeId}"
            EdgeState edgeState = Mock()
            DependencyState dependencyState = Mock()
            DependencyMetadata dependencyMetadata = Mock()
            ModuleComponentSelector selector = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. tests/testdata/bootstrap_tmpl.json

    {
      "node": {
        "id": "{{ .EnvoyConfigOpt.NodeID }}",
        "cluster": "mycluster",
        "locality": {
          "zone": "testzone"
        },
        "metadata": {
          {{ .EnvoyConfigOpt.meta_json_str }}
        }
      },
      "stats_config": {
        "use_all_default_tags": false
      },
      "admin": {
        "access_log_path": "{{.AccessLogPath}}",
        "address": {
          "socket_address": {
            "address": "0.0.0.0",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.5K bytes
    - Viewed (0)
  9. pkg/serviceaccount/claims_test.go

    		pod            = &v1.Pod{ObjectMeta: metav1.ObjectMeta{Name: "podname", Namespace: "ns", UID: "poduid"}}
    		node           = &v1.Node{ObjectMeta: metav1.ObjectMeta{Name: "nodename", UID: "nodeuid"}}
    	)
    
    	deletionTestCases := []deletionTestCase{
    		{
    			name: "valid",
    			time: nil,
    		},
    		{
    			name: "deleted now",
    			time: &metav1.Time{Time: time.Unix(nowUnix, 0)},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    )
    
    const (
    	// Name of node annotation that contains JSON map of driver names to node
    	annotationKeyNodeID = "csi.volume.kubernetes.io/nodeid"
    )
    
    var (
    	nodeKind      = v1.SchemeGroupVersion.WithKind("Node")
    	updateBackoff = wait.Backoff{
    		Steps:    4,
    		Duration: 10 * time.Millisecond,
    		Factor:   5.0,
    		Jitter:   0.1,
    	}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top