Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 153 for node_idx (0.17 sec)

  1. src/syscall/mksysctl_openbsd.pl

    		my @nodeoid = (@oid, $node[0]);
    		if ($node[1] eq 'CTLTYPE_NODE') {
    			if (exists $node_map{$nodename}) {
    				$node = \%mib;
    				$ctlname = $node_map{$nodename};
    				foreach my $part (split /\./, $ctlname) {
    					$node = \%{@{$$node{$part}}[2]};
    				}
    			} else {
    				$node = $node[2];
    			}
    			&build_sysctl($node, $nodename, \@nodeoid);
    		} elsif ($node[1] ne '') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K 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. staging/src/k8s.io/api/testdata/v1.29.0/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 Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. pkg/serviceaccount/claims.go

    		}
    		podName = podref.Name
    		podUID = podref.UID
    	}
    
    	var nodeName, nodeUID string
    	if noderef != nil {
    		switch {
    		case podref != nil:
    			if utilfeature.DefaultFeatureGate.Enabled(features.ServiceAccountTokenPodNodeInfo) {
    				// for pod-bound tokens, just extract the node claims
    				nodeName = noderef.Name
    				nodeUID = noderef.UID
    			}
    		case podref == nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. pkg/controller/util/node/controller_utils.go

    func DeletePods(ctx context.Context, kubeClient clientset.Interface, pods []*v1.Pod, recorder record.EventRecorder, nodeName, nodeUID string, daemonStore appsv1listers.DaemonSetLister) (bool, error) {
    	remaining := false
    	var updateErrList []error
    	logger := klog.FromContext(ctx)
    
    	if len(pods) > 0 {
    		RecordNodeEvent(ctx, recorder, nodeName, nodeUID, v1.EventTypeNormal, "DeletingAllPods", fmt.Sprintf("Deleting all Pods from Node %v.", nodeName))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    			info.Extra = make(map[string][]string)
    		}
    		info.Extra[NodeNameKey] = []string{sa.NodeName}
    		// node UID is optional and will only be set if the node name is set
    		if sa.NodeUID != "" {
    			info.Extra[NodeUIDKey] = []string{sa.NodeUID}
    		}
    	}
    
    	return info
    }
    
    // CredentialIDForJTI converts a given JTI string into a credential identifier for use in a
    // users 'extra' info.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. 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)
Back to top