Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for attachmentID (0.14 sec)

  1. pkg/volume/csi/csi_attacher.go

    		return false, errors.New("volume attachment is being deleted")
    	}
    	// attachment OK
    	if attachment.Status.Attached {
    		return true, nil
    	}
    	// driver reports attach error
    	attachErr := attachment.Status.AttachError
    	if attachErr != nil {
    		klog.Error(log("attachment for %v failed: %v", volumeHandle, attachErr.Message))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/remotecommand/constants.go

    	// The SPDY subprotocol "channel.k8s.io" is used for remote command
    	// attachment/execution. This represents the initial unversioned subprotocol,
    	// which has the known bugs https://issues.k8s.io/13394 and
    	// https://issues.k8s.io/13395.
    	StreamProtocolV1Name = "channel.k8s.io"
    
    	// The SPDY subprotocol "v2.channel.k8s.io" is used for remote command
    	// attachment/execution. It is the second version of the subprotocol and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_block.go

    	csi csiClient,
    	accessMode v1.PersistentVolumeAccessMode,
    	csiSource *v1.CSIPersistentVolumeSource,
    	attachment *storage.VolumeAttachment,
    ) (string, error) {
    	klog.V(4).Infof(log("blockMapper.publishVolumeForBlock called"))
    
    	publishVolumeInfo := map[string]string{}
    	if attachment != nil {
    		publishVolumeInfo = attachment.Status.AttachmentMetadata
    	}
    
    	// Inject pod information into volume_attributes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. src/mime/multipart/testdata/nested-mime

    8b2kqeGaj4aT...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_block_test.go

    	attachment := makeTestAttachment(attachID, nodeName, pvName)
    	attachment.Status.Attached = true
    	_, err = csiMapper.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("failed to setup VolumeAttachment: %v", err)
    	}
    	t.Log("created attachment ", attachID)
    
    	stagingPath, err := csiMapper.SetUpDevice()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    			attachID := getAttachmentName(volID, testDriver, nodeName)
    			attachment := makeTestAttachment(attachID, nodeName, pvName)
    			attachment.Status.Attached = tc.initAttached
    			attachment.Status.AttachError = tc.initAttachErr
    			_, err = csiAttacher.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, metav1.CreateOptions{})
    			if err != nil {
    				t.Fatalf("failed to attach: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. pkg/registry/storage/volumeattachment/strategy_test.go

    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("VolumeAttachment should not allow create on update")
    	}
    
    	volumeAttachment := getValidVolumeAttachment("valid-attachment")
    
    	Strategy.PrepareForCreate(ctx, volumeAttachment)
    
    	errs := Strategy.Validate(ctx, volumeAttachment)
    	if len(errs) != 0 {
    		t.Errorf("unexpected error validating %v", errs)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DuplicateArtifactAttachmentException.java

     */
    public class DuplicateArtifactAttachmentException extends RuntimeException {
    
        private static final String DEFAULT_MESSAGE = "Duplicate artifact attachment detected.";
    
        private Artifact artifact;
    
        private final MavenProject project;
    
        public DuplicateArtifactAttachmentException(MavenProject project, Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/net/http/pprof/pprof_test.go

    		{"/debug/pprof/mutex", Index, http.StatusOK, "application/octet-stream", `attachment; filename="mutex"`, nil},
    		{"/debug/pprof/block?seconds=1", Index, http.StatusOK, "application/octet-stream", `attachment; filename="block-delta"`, nil},
    		{"/debug/pprof/goroutine?seconds=1", Index, http.StatusOK, "application/octet-stream", `attachment; filename="goroutine-delta"`, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

        ]]></description>
      </expression>
      <expression>
        <syntax>project.attachedArtifacts</syntax>
        <description>
          <![CDATA[
          This is a list of attachments to the main artifact produced by building the current POM.
          Attachments are derived works, based on the main build process, such as an ejb-client jar,
          project sources jar, etc.
        ]]></description>
      </expression>
    </expressions>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 5.6K bytes
    - Viewed (0)
Back to top