Home
last modified time | relevance | path

Searched refs:downloadStream (Results 1 – 17 of 17) sorted by relevance

/dports/security/vault/vault-1.8.2/vendor/go.mongodb.org/mongo-driver/mongo/gridfs/
H A Dgridfs_examples_test.go67 downloadStream, err := bucket.OpenDownloadStream(fileID)
72 if err := downloadStream.Close(); err != nil {
78 if err = downloadStream.SetReadDeadline(time.Now().Add(2 * time.Second)); err != nil {
83 if _, err := io.Copy(fileBuffer, downloadStream); err != nil {
/dports/www/grafana8/grafana-8.3.6/vendor/go.mongodb.org/mongo-driver/mongo/gridfs/
H A Dgridfs_examples_test.go67 downloadStream, err := bucket.OpenDownloadStream(fileID)
72 if err := downloadStream.Close(); err != nil {
78 if err = downloadStream.SetReadDeadline(time.Now().Add(2 * time.Second)); err != nil {
83 if _, err := io.Copy(fileBuffer, downloadStream); err != nil {
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/go.mongodb.org/mongo-driver/mongo/gridfs/
H A Dgridfs_examples_test.go67 downloadStream, err := bucket.OpenDownloadStream(fileID)
72 if err := downloadStream.Close(); err != nil {
78 if err = downloadStream.SetReadDeadline(time.Now().Add(2 * time.Second)); err != nil {
83 if _, err := io.Copy(fileBuffer, downloadStream); err != nil {
/dports/multimedia/aegisub/aegisub-3.2.2/build/BuildTasks/
H A DDownloadTgzFile.cs24 var downloadStream = new System.Net.WebClient().OpenRead(url); in DownloadArchive()
25 var gzStream = new ICSharpCode.SharpZipLib.GZip.GZipInputStream(downloadStream); in DownloadArchive()
H A DTarballProject.cs60 var downloadStream = new System.Net.WebClient().OpenRead(Url); in Execute()
61 downloadStream.CopyTo(ms); in Execute()
/dports/security/vault/vault-1.8.2/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dgridfs_test.go316 downloadStream, err := bucket.OpenDownloadStream(uploadedFileID)
318 actualFile := downloadStream.GetFile()
322 downloadStream, err := bucket.OpenDownloadStreamByName(fileName)
324 actualFile := downloadStream.GetFile()
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dgridfs_test.go316 downloadStream, err := bucket.OpenDownloadStream(uploadedFileID)
318 actualFile := downloadStream.GetFile()
322 downloadStream, err := bucket.OpenDownloadStreamByName(fileName)
324 actualFile := downloadStream.GetFile()
/dports/games/spring/spring_98.0/tools/pr-downloader/src/Downloader/Rapid/
H A DSdp.h90 bool downloadStream(const std::string& url,std::list<FileData*> files);
H A DSdp.cpp117 downloaded=downloadStream(this->url+"/streamer.cgi?"+this->md5,files); in download()
245 bool CSdp::downloadStream(const std::string& url,std::list<FileData*> files) in downloadStream() function in CSdp
/dports/games/springlobby/springlobby-0.180/src/downloader/lib/src/Downloader/Rapid/
H A DSdp.h90 bool downloadStream(const std::string& url,std::list<FileData*> files);
H A DSdp.cpp117 downloaded=downloadStream(this->url+"/streamer.cgi?"+this->md5,files); in download()
263 bool CSdp::downloadStream(const std::string& url,std::list<FileData*> files) in downloadStream() function in CSdp
/dports/net/rclone/rclone-1.57.0/vendor/storj.io/uplink/private/piecestore/
H A Ddownload.go35 stream downloadStream
56 type downloadStream interface { interface
/dports/net/storj/storj-1.45.3/vendor/storj.io/uplink/private/piecestore/
H A Ddownload.go36 stream downloadStream
57 type downloadStream interface { interface
/dports/www/grafana8/grafana-8.3.6/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dgridfs_test.go317 downloadStream, err := bucket.OpenDownloadStream(uploadedFileID)
319 actualFile := downloadStream.GetFile()
323 downloadStream, err := bucket.OpenDownloadStreamByName(fileName)
325 actualFile := downloadStream.GetFile()
/dports/games/springlobby/springlobby-0.180/src/downloader/lib/src/Downloader/Http/
H A DHttpDownloader.h36 void downloadStream(const std::string& url,std::list<FileData*>& files);
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.mongodb.org/mongo-driver/mongo/gridfs/
H A Dgridfs_spec_test.go635 downloadStream := bytes.NewBuffer(downloadBuffer)
636 n, err := bucket.DownloadToStream(args.Lookup("id").ObjectID(), downloadStream)
666 downloadStream := bytes.NewBuffer(downloadBuffer)
667 …n, err := bucket.DownloadToStreamByName(args.Lookup("filename").StringValue(), downloadStream, opt…
/dports/misc/py-toil/toil-5.4.0/src/toil/jobStores/aws/
H A DjobStore.py590 with info.downloadStream(encoding=encoding, errors=errors) as readable:
599 with info.downloadStream(encoding=encoding, errors=errors) as readable:
643 with info.downloadStream() as readable:
1462 def downloadStream(self, verifyChecksum=True, encoding=None, errors=None): member in AWSJobStore.FileInfo