Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for driver_name (0.37 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

    message ResourceHandle {
      // DriverName specifies the name of the resource driver whose kubelet
      // plugin should be invoked to process this ResourceHandle's data once it
      // lands on a node. This may differ from the DriverName set in
      // ResourceClaimStatus this ResourceHandle is embedded in.
      optional string driverName = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/resource.k8s.io.v1alpha2.ResourceClaim.json

          "kind": "kindValue",
          "name": "nameValue"
        },
        "allocationMode": "allocationModeValue"
      },
      "status": {
        "driverName": "driverNameValue",
        "allocation": {
          "resourceHandles": [
            {
              "driverName": "driverNameValue",
              "data": "dataValue"
            }
          ],
          "availableOnNodes": {
            "nodeSelectorTerms": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tests/connection_test.go

    	}
    
    	if actualName != expectedName {
    		t.Errorf("WithSingleConnection() method should get correct value, expect: %v, got %v", expectedName, actualName)
    	}
    }
    
    func getSetSQL(driverName string) (string, string) {
    	switch driverName {
    	case mysql.Dialector{}.Name():
    		return "SET @testName := ?", "SELECT @testName"
    	default:
    		return "", ""
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 28 14:16:42 UTC 2022
    - 963 bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter.go

    		volDataKey.specVolID:           c.spec.Name(),
    		volDataKey.volHandle:           volumeHandle,
    		volDataKey.driverName:          string(c.driverName),
    		volDataKey.nodeName:            nodeName,
    		volDataKey.volumeLifecycleMode: string(c.volumeLifecycleMode),
    		volDataKey.attachmentID:        getAttachmentName(volumeHandle, string(c.driverName), nodeName),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  5. pkg/kubelet/cm/dra/state/state_checkpoint.go

    	// CDIDevices is a map of DriverName --> CDI devices returned by the
    	// GRPC API call NodePrepareResource
    	CDIDevices map[string][]string
    }
    
    // ClaimInfoStateWithoutResourceHandles is an old implementation of the ClaimInfoState
    // TODO: remove in Beta
    type ClaimInfoStateWithoutResourceHandles struct {
    	// Name of the DRA driver
    	DriverName string
    
    	// ClassName is a resource class of the claim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"":               "ResourceHandle holds opaque resource data for processing by a specific kubelet plugin.",
    	"driverName":     "DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle's data once it lands on a node. This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/resource.k8s.io.v1alpha2.ResourceClaim.json

          "kind": "kindValue",
          "name": "nameValue"
        },
        "allocationMode": "allocationModeValue"
      },
      "status": {
        "driverName": "driverNameValue",
        "allocation": {
          "resourceHandles": [
            {
              "driverName": "driverNameValue",
              "data": "dataValue",
              "structuredData": {
                "vendorClassParameters": {
                  "apiVersion": "example.com/v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

    message ResourceHandle {
      // DriverName specifies the name of the resource driver whose kubelet
      // plugin should be invoked to process this ResourceHandle's data once it
      // lands on a node. This may differ from the DriverName set in
      // ResourceClaimStatus this ResourceHandle is embedded in.
      optional string driverName = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaim.yaml

              - valuesValue
            matchFields:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
        resourceHandles:
        - data: dataValue
          driverName: driverNameValue
          structuredData:
            nodeName: nodeNameValue
            results:
            - namedResources:
                name: nameValue
              vendorRequestParameters:
                apiVersion: example.com/v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    			if data[volDataKey.volHandle] != csiMounter.volumeID {
    				t.Error("volume data file unexpected volHandle:", data[volDataKey.volHandle])
    			}
    			if data[volDataKey.driverName] != string(csiMounter.driverName) {
    				t.Error("volume data file unexpected driverName:", data[volDataKey.driverName])
    			}
    			if data[volDataKey.nodeName] != string(csiMounter.plugin.host.GetNodeName()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top