Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for attachmentID (0.26 sec)

  1. pkg/volume/csi/csi_test.go

    					t.Fatalf("csiTest.VolumeAll attacher.WaitForAttach got unexpected value %s", devicePath)
    				}
    
    				t.Log("csiTest.VolumeAll attacher.WaitForAttach succeeded OK, attachment ID:", devicePath)
    
    			} else {
    				t.Log("csiTest.VolumeAll volume attacher not found, skipping attachment")
    			}
    
    			// The reason for separate volume hosts here is because the attach/detach behavior is exclusive to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  2. cmd/signature-v2_test.go

    			},
    			expected: ErrSignatureDoesNotMatch,
    		},
    		// (6) Should not error signature matches with extra query params.
    		{
    			queryParams: map[string]string{
    				"response-content-disposition": "attachment; filename=\"4K%2d4M.txt\"",
    			},
    			expected: ErrNone,
    		},
    		// (7) Should not error signature matches with no special query params.
    		{
    			queryParams: map[string]string{},
    			expected:    ErrNone,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 14 10:08:40 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

                    final int count = multipart.getCount();
                    for (int i = 0; i < count; i++) {
                        final BodyPart bodyPart = multipart.getBodyPart(i);
                        if (Part.ATTACHMENT.equalsIgnoreCase(bodyPart.getDisposition())) {
                            appendAttachment(buf, bodyPart);
                        } else if (bodyPart.isMimeType("text/plain") || bodyPart.isMimeType("text/html")) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			// If it fails to update node status, skip detach volume
    			// If volume detach operation fails, the volume needs to be added back to report as attached so that node status
    			// has the correct volume attachment information.
    			err = rc.actualStateOfWorld.RemoveVolumeFromReportAsAttached(attachedVolume.VolumeName, attachedVolume.NodeName)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/adminlte.min.css

    eight:40px;line-height:40px;width:40px}.size-50{height:50px;line-height:50px;width:50px}.attachment-block{background:#f8f9fa;border:1px solid rgba(0,0,0,.125);margin-bottom:10px;padding:5px}.attachment-block .attachment-img{float:left;height:auto;max-height:100px;max-width:100px}.attachment-block .attachment-pushed{margin-left:110px}.attachment-block .attachment-heading{margin:0}.attachment-block .attachment-text{color:#495057}.card>.loading-img,.card>.overlay,.info-box>.loading-img,.info-box>.o...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 641.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            specific Listener as a parent resource (more detail on attachment
                            semantics can be found in the documentation on the various
                            Route kinds ParentRefs fields). Listener or Route status does
                            not impact successful attachment, i.e. the AttachedRoutes
                            field count MUST be set for Listeners with condition Accepted:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  7. src/mime/multipart/multipart_test.go

    	p, err = mr2.NextPart()
    	if err != io.EOF {
    		t.Fatalf("final inner NextPart = %v; want io.EOF", err)
    	}
    
    	// Back to the outer multipart/mixed, reading the image attachment.
    	_, err = mr.NextPart()
    	if err != nil {
    		t.Fatalf("error reading the image attachment at the end: %v", err)
    	}
    
    	_, err = mr.NextPart()
    	if err != io.EOF {
    		t.Fatalf("final outer NextPart = %v; want io.EOF", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  8. src/net/smtp/smtp.go

    // parameter but not including it in the msg headers.
    //
    // The SendMail function and the net/smtp package are low-level
    // mechanisms and provide no support for DKIM signing, MIME
    // attachments (see the mime/multipart package), or other mail
    // functionality. Higher-level packages exist outside of the standard
    // library.
    func SendMail(addr string, a Auth, from string, to []string, msg []byte) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. operator/pkg/verifier/verifier.go

    // specialKinds is a map of special kinds to their corresponding kind names, which do not follow the
    // standard convention of pluralizing the kind name.
    var specialKinds = map[string]string{
    	"NetworkAttachmentDefinition": "network-attachment-definitions",
    }
    
    // StatusVerifier checks status of certain resources like deployment,
    // jobs and also verifies count of certain resource types.
    type StatusVerifier struct {
    	istioNamespace   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            final String name = pi.getName();
            final String encodedName = URLEncoder.encode(name, Constants.UTF_8_CHARSET).replace("+", "%20");
            response.header("Content-Disposition", "attachment; filename=\"" + name + "\"; filename*=utf-8''" + encodedName);
            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top