Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for attacher (0.13 sec)

  1. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

    message VolumeAttachmentStatus {
      // attached indicates the volume is successfully attached.
      // This field must only be set by the entity completing the attach
      // operation, i.e. the external-attacher.
      optional bool attached = 1;
    
      // attachmentMetadata is populated with any
      // information returned by the attach operation, upon successful attach, that must be passed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "attacher": "attacherValue",
        "source": {
          "persistentVolumeName": "persistentVolumeNameValue",
          "inlineVolumeSpec": {
            "capacity": {
              "capacityKey": "0"
            },
            "gcePersistentDisk": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      attacher: attacherValue
      nodeName: nodeNameValue
      source:
        inlineVolumeSpec:
          accessModes:
          - accessModesValue
          awsElasticBlockStore:
            fsType: fsTypeValue
            partition: 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      attacher: attacherValue
      nodeName: nodeNameValue
      source:
        inlineVolumeSpec:
          accessModes:
          - accessModesValue
          awsElasticBlockStore:
            fsType: fsTypeValue
            partition: 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      attacher: attacherValue
      nodeName: nodeNameValue
      source:
        inlineVolumeSpec:
          accessModes:
          - accessModesValue
          awsElasticBlockStore:
            fsType: fsTypeValue
            partition: 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "attacher": "attacherValue",
        "source": {
          "persistentVolumeName": "persistentVolumeNameValue",
          "inlineVolumeSpec": {
            "capacity": {
              "capacityKey": "0"
            },
            "gcePersistentDisk": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "attacher": "attacherValue",
        "source": {
          "persistentVolumeName": "persistentVolumeNameValue",
          "inlineVolumeSpec": {
            "capacity": {
              "capacityKey": "0"
            },
            "gcePersistentDisk": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/plugin.go

    func (plugin *flexVolumeAttachablePlugin) NewAttacher() (volume.Attacher, error) {
    	return &flexVolumeAttacher{plugin}, nil
    }
    
    func (plugin *flexVolumeAttachablePlugin) NewDeviceMounter() (volume.DeviceMounter, error) {
    	return plugin.NewAttacher()
    }
    
    // NewDetacher is part of the volume.AttachableVolumePlugin interface.
    func (plugin *flexVolumeAttachablePlugin) NewDetacher() (volume.Detacher, error) {
    	return &flexVolumeDetacher{plugin}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         */
        RootBuildState createRootBuild(BuildDefinition buildDefinition);
    
        /**
         * Attaches the root build.
         */
        void attachRootBuild(RootBuildState rootBuild);
    
        /**
         * Returns the root build of the build tree.
         *
         * @throws IllegalStateException When root build has not been attached.
         */
        RootBuildState getRootBuild() throws IllegalStateException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    // Add the second argument to the first argument, which is expected to be an
    // argument list.
    // Used to attach bias to einsum argument list.
    SmallVector<Value> AppendToVector(ArrayRef<Value> arguments, Value append);
    
    // Checks if the `Method` attatched to the given `tf.XlaCallModule` op has
    // `WeightOnlyPtq`.
    bool HasWeightOnlyPtqMethod(TF::XlaCallModuleOp xla_call_module_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top