Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CanonicalMIMEHeaderKey (0.33 sec)

  1. src/net/textproto/header.go

    // used to canonicalize the provided key. To use non-canonical
    // keys, access the map directly.
    // The returned slice is not a copy.
    func (h MIMEHeader) Values(key string) []string {
    	if h == nil {
    		return nil
    	}
    	return h[CanonicalMIMEHeaderKey(key)]
    }
    
    // Del deletes the values associated with key.
    func (h MIMEHeader) Del(key string) {
    	delete(h, CanonicalMIMEHeaderKey(key))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/net/textproto/reader_test.go

    	commonHeaderOnce.Do(initCommonHeader)
    	for h := range commonHeader {
    		if h != CanonicalMIMEHeaderKey(h) {
    			t.Errorf("Non-canonical header %q in commonHeader", h)
    		}
    	}
    	b := []byte("content-Length")
    	want := "Content-Length"
    	n := testing.AllocsPerRun(200, func() {
    		if x, _ := canonicalMIMEHeaderKey(b); x != want {
    			t.Fatalf("canonicalMIMEHeaderKey(%q) = %q; want %q", b, x, want)
    		}
    	})
    	if n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. src/net/textproto/reader.go

    // returned without modifications.
    func CanonicalMIMEHeaderKey(s string) string {
    	// Quick check for canonical encoding.
    	upper := true
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		if !validHeaderFieldByte(c) {
    			return s
    		}
    		if upper && 'a' <= c && c <= 'z' {
    			s, _ = canonicalMIMEHeaderKey([]byte(s))
    			return s
    		}
    		if !upper && 'A' <= c && c <= 'Z' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. src/net/http/header.go

    // canonicalized by [textproto.CanonicalMIMEHeaderKey].
    // To use non-canonical keys, assign to the map directly.
    func (h Header) Set(key, value string) {
    	textproto.MIMEHeader(h).Set(key, value)
    }
    
    // Get gets the first value associated with the given key. If
    // there are no values associated with the key, Get returns "".
    // It is case insensitive; [textproto.CanonicalMIMEHeaderKey] is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/net/mail/message.go

    		if kv == "" {
    			return m, err
    		}
    
    		// Key ends at first colon.
    		k, v, ok := strings.Cut(kv, ":")
    		if !ok {
    			return m, errors.New("malformed header line: " + kv)
    		}
    		key := textproto.CanonicalMIMEHeaderKey(k)
    
    		// Permit empty key, because that is what we did in the past.
    		if key == "" {
    			continue
    		}
    
    		// Skip initial spaces in value.
    		value := strings.TrimLeft(v, " \t")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. internal/bucket/object/lock/lock.go

    	// users to provide RFC 3339 compliant dates.
    	retDate, err = amztime.ISO8601Parse(dateStr)
    	if err != nil {
    		return rmode, r, ErrInvalidRetentionDate
    	}
    	_, replReq := h[textproto.CanonicalMIMEHeaderKey(xhttp.MinIOSourceReplicationRequest)]
    
    	t, err := UTCNowNTP()
    	if err != nil {
    		lockLogIf(context.Background(), err)
    		return rmode, r, ErrPastObjectLockRetainDate
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(MIMEHeader).Del", Method, 0},
    		{"(MIMEHeader).Get", Method, 0},
    		{"(MIMEHeader).Set", Method, 0},
    		{"(MIMEHeader).Values", Method, 14},
    		{"(ProtocolError).Error", Method, 0},
    		{"CanonicalMIMEHeaderKey", Func, 0},
    		{"Conn", Type, 0},
    		{"Conn.Pipeline", Field, 0},
    		{"Conn.Reader", Field, 0},
    		{"Conn.Writer", Field, 0},
    		{"Dial", Func, 0},
    		{"Error", Type, 0},
    		{"Error.Code", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top