Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for node_idx (0.12 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSINode.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "drivers": [
          {
            "name": "nameValue",
            "nodeID": "nodeIDValue",
            "topologyKeys": [
              "topologyKeysValue"
            ],
            "allocatable": {
              "count": 1
            }
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSINode.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "drivers": [
          {
            "name": "nameValue",
            "nodeID": "nodeIDValue",
            "topologyKeys": [
              "topologyKeysValue"
            ],
            "allocatable": {
              "count": 1
            }
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSINode.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      drivers:
      - allocatable:
          count: 1
        name: nameValue
        nodeID: nodeIDValue
        topologyKeys:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 991 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.CSINode.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "drivers": [
          {
            "name": "nameValue",
            "nodeID": "nodeIDValue",
            "topologyKeys": [
              "topologyKeysValue"
            ],
            "allocatable": {
              "count": 1
            }
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        auto node_it = nodes_.find(input_inst);
        TF_RET_CHECK(node_it != nodes_.end())
            << "Use of OpResult encountered before def!";
        if (mlir::isa<mlir::tf_executor::ControlType>(input_result.getType())) {
          graph_->AddControlEdge(node_it->second, dst_node,
                                 /*allow_duplicates=*/true);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

        auto node_it = nodes_.find(input_inst);
        TF_RET_CHECK(node_it != nodes_.end())
            << "Use of OpResult encountered before def!";
        if (mlir::isa<mlir::tf_executor::ControlType>(input_result.getType())) {
          graph_->AddControlEdge(node_it->second, dst_node,
                                 /*allow_duplicates=*/true);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. tests/testdata/mcp_bootstrap_tmpl.json

    {
      "node": {
        "id": "{{ .EnvoyConfigOpt.NodeID }}",
        "cluster": "mycluster"
      },
      "admin": {
        "access_log_path": "/dev/stdout",
        "address": {
          "socket_address": {
            "address": "0.0.0.0",
            "port_value": {{.Ports.AdminPort}}
          }
        }
      },
      "static_resources": {
        "listeners": [],
        "clusters": [
          {
            "name": "xds-grpc",
            "type": "STRICT_DNS",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 08 21:09:56 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            val scheduledEntryNodeIds = mutableListOf<Int>()
            nodes.forEach { node ->
                write(node)
                val nodeId = scheduledNodeIds.size
                scheduledNodeIds[node] = nodeId
                if (node in work.entryNodes) {
                    scheduledEntryNodeIds.add(nodeId)
                }
                if (node is LocalTaskNode) {
                    scheduledNodeIds[node.prepareNode] = scheduledNodeIds.size
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/registry/storage/csinode/storage/storage_test.go

    	return &storageapi.CSINode{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: storageapi.CSINodeSpec{
    			Drivers: []storageapi.CSINodeDriver{
    				{
    					Name:         "valid-driver-name",
    					NodeID:       "valid-node",
    					TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    				},
    			},
    		},
    	}
    }
    
    func TestCreate(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                def nodeMatcher = matchers[0]
                def nodeId = getTypedNodeId(plannedNode.nodeIdentity)
                assert !usedMatchers.contains(nodeMatcher)
                usedMatchers.add(nodeMatcher)
                nodeIdByTypedNodeId[nodeId] = nodeMatcher.nodeId
                expectedDependencyNodeIdsByTypedNodeId[nodeId] = nodeMatcher.dependencyNodeIds
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
Back to top