Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for TypeByExtension (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/extensions/s3zip/README.md

    ## Content-Type
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Apr 10 16:28:27 GMT 2024
    - 3K bytes
    - Click Count (0)
  2. cmd/ftp-server-driver.go

    	clnt, err := driver.getMinIOClient(ctx)
    	if err != nil {
    		return 0, err
    	}
    
    	info, err := clnt.PutObject(context.Background(), bucket, object, data, -1, minio.PutObjectOptions{
    		ContentType:          mimedb.TypeByExtension(path.Ext(object)),
    		DisableContentSha256: true,
    		Checksum:             minio.ChecksumFullObjectCRC32C,
    	})
    	n = info.Size
    	return n, err
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 14.3K bytes
    - Click Count (0)
  3. cmd/erasure-multipart.go

    	for index := range partsMetadata {
    		partsMetadata[index] = fi
    	}
    
    	// Guess content-type from the extension if possible.
    	if userDefined["content-type"] == "" {
    		userDefined["content-type"] = mimedb.TypeByExtension(path.Ext(object))
    	}
    
    	// if storageClass is standard no need to save it as part of metadata.
    	if userDefined[xhttp.AmzStorageClass] == storageclass.STANDARD {
    		delete(userDefined, xhttp.AmzStorageClass)
    	}
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 24 04:05:31 GMT 2025
    - 47.1K bytes
    - Click Count (0)
  4. api/go1.txt

    pkg mime, func AddExtensionType(string, string) error
    pkg mime, func FormatMediaType(string, map[string]string) string
    pkg mime, func ParseMediaType(string) (string, map[string]string, error)
    pkg mime, func TypeByExtension(string) string
    pkg mime/multipart, func NewReader(io.Reader, string) *Reader
    pkg mime/multipart, func NewWriter(io.Writer) *Writer
    pkg mime/multipart, method (*FileHeader) Open() (File, error)
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
Back to Top