Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 185 for node_id (0.32 sec)

  1. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "node_v1"
            ]
          }
        },
        "/apis/node.k8s.io/v1/runtimeclasses": {
          "delete": {
            "description": "delete collection of RuntimeClass",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      }
    
      replicate->setAttr(kDevicesAttr, builder->getDictionaryAttr(device_attrs));
    }
    
    // Creates a `tf.TPUExecute` op that executes TPU program.
    LogicalResult BuildExecuteOp(
        const int core_id, llvm::ArrayRef<xla::OpSharding> output_sharding_config,
        llvm::ArrayRef<Value> inputs, tf_device::ClusterFuncOp cluster_func,
        OpBuilder* builder, TF::TPUExecuteOp* execute_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // 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.
      optional string name = 1;
    
      // nodeID of the node from the driver point of view.
      // This field enables Kubernetes to communicate with storage systems that do
      // not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	for _, n := range fns {
    		lineno := n.Info.Lineno
    		nodeStart := n.Info.StartLine
    		if nodeStart == 0 {
    			nodeStart = lineno - margin
    		}
    		nodeEnd := lineno + margin
    		if nodeStart < start {
    			start = nodeStart
    		} else if nodeEnd > end {
    			end = nodeEnd
    		}
    		lineNodes[lineno] = append(lineNodes[lineno], n)
    	}
    	if start < 1 {
    		start = 1
    	}
    
    	var src graph.Nodes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    			copy(dAtA[i:], m.TopologyKeys[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.TopologyKeys[iNdEx])))
    			i--
    			dAtA[i] = 0x1a
    		}
    	}
    	i -= len(m.NodeID)
    	copy(dAtA[i:], m.NodeID)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.NodeID)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/generated.pb.go

    			copy(dAtA[i:], m.TopologyKeys[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.TopologyKeys[iNdEx])))
    			i--
    			dAtA[i] = 0x1a
    		}
    	}
    	i -= len(m.NodeID)
    	copy(dAtA[i:], m.NodeID)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.NodeID)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  7. pkg/apis/storage/types.go

    type CSINodeDriver struct {
    	// This is 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.
    	Name string
    
    	// nodeID of the node from the driver point of view.
    	// This field enables Kubernetes to communicate with storage systems that do
    	// not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. cmd/handler-utils.go

    func extractRespElements(w http.ResponseWriter) map[string]string {
    	if w == nil {
    		return map[string]string{}
    	}
    	return map[string]string{
    		"requestId":      w.Header().Get(xhttp.AmzRequestID),
    		"nodeId":         w.Header().Get(xhttp.AmzRequestHostID),
    		"content-length": w.Header().Get(xhttp.ContentLength),
    		// Add more fields here.
    	}
    }
    
    // Trims away `aws-chunked` from the content-encoding header if present.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types.go

    	// this plugin would implement QueueingHint for Pod/Update event
    	// that returns Queue when such label changes are made in unscheduled Pods.
    	Pod GVK = "Pod"
    	// A note about NodeAdd event and UpdateNodeTaint event:
    	// NodeAdd QueueingHint isn't always called because of the internal feature called preCheck.
    	// It's definitely not something expected for plugin developers,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/graph.go

    	// don't maintain indices for nodes with few edges
    	edgeCount := g.graph.Degree(n)
    	if edgeCount < g.destinationEdgeThreshold {
    		delete(g.destinationEdgeIndex, n.ID())
    		return
    	}
    
    	// decrement the nodeID->destinationID refcount in the index, if the index exists
    	index := g.destinationEdgeIndex[n.ID()]
    	if index == nil {
    		return
    	}
    	if destinationEdge, ok := e.(*destinationEdge); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top