Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Eliane (0.2 sec)

  1. cmd/utils.go

    		lbody = body
    	}
    	d := xml.NewDecoder(lbody)
    	// Ignore any encoding set in the XML body
    	d.CharsetReader = nopCharsetConverter
    	err := d.Decode(v)
    	if errors.Is(err, io.EOF) {
    		err = &xml.SyntaxError{
    			Line: 0,
    			Msg:  err.Error(),
    		}
    	}
    	return err
    }
    
    // hasContentMD5 returns true if Content-MD5 header is set.
    func hasContentMD5(h http.Header) bool {
    	_, ok := h[xhttp.ContentMD5]
    	return ok
    }
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top