Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for node_idx (0.21 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

        {{ else if (index .metadata.Labels "td.networking.gke.io/gateway-name") }}
          "id": "projects/{{ .gcp_project_number }}/networks/scope:{{ (index .metadata.Labels "td.networking.gke.io/gateway-name") }}/nodes/{{ .nodeID}}",
        {{ else }}
          "id": "projects/{{ .gcp_project_number }}/networks/default/nodes/{{ .nodeID}}",
        {{ end }}
        "cluster": "{{ .cluster }}",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTransformNodeIdBuildOperationIntegrationTest.groovy

        }
    
        private Map<String, Long> getUniqueIdsPerColor() {
            transformStepIdentities.collectEntries { color, identities ->
                def nodeIds = (identities*.transformStepNodeId as Set<Long>)
                [(color): Iterables.getOnlyElement(nodeIds)]
            }
        }
    
        private Map<String, List<Map<String, ?>>> getTransformStepIdentities() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        uint32_t body_idx = opts->body_subgraph_index;
        if (body_idx >= func_names.size()) {
          return errors::InvalidArgument("subgraph with index not found: ",
                                         body_idx);
        }
        auto body_attr =
            mlir::SymbolRefAttr::get(builder.getContext(), func_names.at(body_idx));
    
        return llvm::SmallVector<mlir::NamedAttribute, 4>{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation.go

    // validateCSINodeDriverNodeID tests if Name in CSINodeDriver is a valid node id.
    func validateCSINodeDriverNodeID(nodeID string, fldPath *field.Path, validationOpts CSINodeValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	// nodeID is always required
    	if len(nodeID) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath, nodeID))
    	}
    	maxLength := csiNodeIDMaxLength
    	if validationOpts.AllowLongNodeID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/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: Thu Apr 18 08:52:25 UTC 2024
    - 991 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  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