Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 153 for node_idx (0.12 sec)

  1. cmd/event-notification.go

    		uniqueID = fmt.Sprintf("%X", args.Object.ModTime.UnixNano())
    	}
    
    	respElements := map[string]string{
    		"x-amz-request-id": args.RespElements["requestId"],
    		"x-amz-id-2":       args.RespElements["nodeId"],
    		"x-minio-origin-endpoint": func() string {
    			if globalMinioEndpoint != "" {
    				return globalMinioEndpoint
    			}
    			return getAPIEndpoints()[0]
    		}(), // MinIO specific custom elements.
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    // function and the metadata.
    func ParseServiceNodeWithMetadata(nodeID string, metadata *NodeMetadata) (*Proxy, error) {
    	parts := strings.Split(nodeID, serviceNodeSeparator)
    	out := &Proxy{
    		Metadata: metadata,
    	}
    
    	if len(parts) != 4 {
    		return out, fmt.Errorf("missing parts in the service node %q", nodeID)
    	}
    
    	if !pm.IsApplicationNodeType(NodeType(parts[0])) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/types.go

    	// refer to the node name using the ID that the storage system will
    	// understand, e.g. "nodeA" instead of "node1". This field is required.
    	NodeID string `json:"nodeID" protobuf:"bytes,2,opt,name=nodeID"`
    
    	// topologyKeys is the list of keys supported by the driver.
    	// When a driver is initialized on a cluster, it provides a set of topology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// refer to the node name using the ID that the storage system will
    	// understand, e.g. "nodeA" instead of "node1". This field is required.
    	NodeID string `json:"nodeID" protobuf:"bytes,2,opt,name=nodeID"`
    
    	// topologyKeys is the list of keys supported by the driver.
    	// When a driver is initialized on a cluster, it provides a set of topology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		ip = "127.0.0.1"
    	}
    	if namespace == "" {
    		namespace = "default"
    	}
    	if app == "" {
    		app = "app"
    	}
    	nodeID := "sidecar~" + ip + "~" + app + "." + namespace + "~" + namespace + ".svc.cluster.local"
    	bootstrap, err := grpcxds.GenerateBootstrap(grpcxds.GenerateBootstrapOptions{
    		Node: &model.Node{
    			ID: nodeID,
    			Metadata: &model.BootstrapNodeMetadata{
    				NodeMetadata: model.NodeMetadata{
    					Namespace: namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/memory_manager.go

    	numaNodes := sets.New[int]()
    	for _, block := range m.state.GetMemoryBlocks(string(pod.UID), container.Name) {
    		for _, nodeID := range block.NUMAAffinity {
    			// avoid nodes duplication when hugepages and memory blocks pinned to the same NUMA node
    			numaNodes.Insert(nodeID)
    		}
    	}
    
    	if numaNodes.Len() == 0 {
    		klog.V(5).InfoS("No allocation is available", "pod", klog.KObj(pod), "containerName", container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  7. tools/packaging/common/envoy_bootstrap.json

            "caller": "%g:%#",
            "thread": "%t"
          }
    {{- else }}
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
    {{- end }}
        }
      },
      "node": {
        "id": "{{ .nodeID }}",
        "cluster": "{{ .cluster }}",
        "locality": {
          {{- if .region }}
          "region": "{{ .region }}"
          {{- end }}
          {{- if .zone }}
          {{- if .region }}
          ,
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        while (elem != null && elem.parentElement != graph0) {
          elem = elem.parentElement;
        }
        if (!elem) return;
    
        // Disable regexp mode.
        regexpActive = false;
    
        const n = nodeId(elem);
        if (n < 0) return;
        if (selected.has(n)) {
          unselect(n);
        } else {
          select(n);
        }
        updateButtons();
      }
    
      function unselect(n) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    		}
    		req := &BatchJobRequest{}
    		if err := req.load(ctx, j.objLayer, result.Item.Name); err != nil {
    			batchLogIf(ctx, err)
    			continue
    		}
    		_, nodeIdx := parseRequestToken(req.ID)
    		if nodeIdx > -1 && GetProxyEndpointLocalIndex(globalProxyEndpoints) != nodeIdx {
    			// This job doesn't belong on this node.
    			continue
    		}
    		if err := j.queueJob(req); err != nil {
    			batchLogIf(ctx, err)
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"name":         "name represents the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
Back to top