當前位置: 首頁>>代碼示例>>Golang>>正文


Golang googleapi.ProcessMediaOptions函數代碼示例

本文整理匯總了Golang中google/golang.org/api/googleapi.ProcessMediaOptions函數的典型用法代碼示例。如果您正苦於以下問題:Golang ProcessMediaOptions函數的具體用法?Golang ProcessMediaOptions怎麽用?Golang ProcessMediaOptions使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了ProcessMediaOptions函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: Media

// Media specifies the media to upload in one or more chunks. The chunk
// size may be controlled by supplying a MediaOption generated by
// googleapi.ChunkSize. The chunk size defaults to
// googleapi.DefaultUploadChunkSize.
// At most one of Media and ResumableMedia may be set.
func (c *ArchiveInsertCall) Media(r io.Reader, options ...googleapi.MediaOption) *ArchiveInsertCall {
	opts := googleapi.ProcessMediaOptions(options)
	chunkSize := opts.ChunkSize
	r, c.mediaType_ = gensupport.DetermineContentType(r, opts.ContentType)
	c.media_, c.resumableBuffer_ = gensupport.PrepareUpload(r, chunkSize)
	return c
}
開發者ID:Celluliodio,項目名稱:flannel,代碼行數:12,代碼來源:groupsmigration-gen.go

示例2: Media

// Media specifies the media to upload in one or more chunks. The chunk
// size may be controlled by supplying a MediaOption generated by
// googleapi.ChunkSize. The chunk size defaults to
// googleapi.DefaultUploadChunkSize.The Content-Type header used in the
// upload request will be determined by sniffing the contents of r,
// unless a MediaOption generated by googleapi.ContentType is
// supplied.
// At most one of Media and ResumableMedia may be set.
func (c *FilesUpdateCall) Media(r io.Reader, options ...googleapi.MediaOption) *FilesUpdateCall {
	opts := googleapi.ProcessMediaOptions(options)
	chunkSize := opts.ChunkSize
	if !opts.ForceEmptyContentType {
		r, c.mediaType_ = gensupport.DetermineContentType(r, opts.ContentType)
	}
	c.media_, c.mediaBuffer_ = gensupport.PrepareUpload(r, chunkSize)
	return c
}
開發者ID:camlistore,項目名稱:camlistore,代碼行數:17,代碼來源:drive-gen.go

示例3: Media

// Media specifies the media to upload in a single chunk. At most one of
// Media and ResumableMedia may be set.
func (c *MediaUploadCall) Media(r io.Reader, options ...googleapi.MediaOption) *MediaUploadCall {
	opts := googleapi.ProcessMediaOptions(options)
	c.media_, c.mediaType_ = gensupport.DetermineContentType(r, opts.ContentType)
	c.protocol_ = "multipart"
	return c
}
開發者ID:grosskur,項目名稱:agent,代碼行數:8,代碼來源:dataproc-gen.go


注:本文中的google/golang.org/api/googleapi.ProcessMediaOptions函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。