azure-sdk-for-cpp
azure-sdk-for-cpp copied to clipboard
This repository is for active development of the Azure SDK for C++. For consumers of the SDK we recommend visiting our versioned developer docs at https://azure.github.io/azure-sdk-for-cpp.
We are using the SDK to upload small blobs (around few MBs in size) continuously. There is no issue if blob store connection is stable. When there are connectivity issues...
## General Integration Samples An integration sample is one small project (typically CMake project) which demonstrates how to integrate/consume the Azure SDK for C++ to one application/library. ### Motivation One...
Proxy test is currently disabled. We need to have a proxy server that we own for testing the feature
Please add the following Storage Blob perf tests: 1. Track2: Upload, ListBlobs 2. Track1: Download, Upload, ListBlobs For reference, the .NET tests are here: - Track2: https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/perf/Azure.Storage.Blobs.Perf - Track1: https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/perf/Microsoft.Azure.Storage.Blob.Perf...
Replace/Update the logging layer using the Azure SDK core log support.
The test framework is currently implementing recording and playback for unit tests. The implementation includes pipeline policies to create the recordings and to consume them for playback. The recording policy...
(if it is not yet enabled) If it is - make sure that it would complain about nothrow violation. IN general, in the end, it is a good test if...
Downloading an HSM's Security domain sometimes fails for our live tests without us logging a possible error message from the Powershell cmdlet. We can leverage [.NET](https://github.com/Azure/azure-sdk-for-net/blob/79fddcfff8d895a19cbea334ccea6d1a20cc918a/sdk/keyvault/test-resources-post.ps1#L99)'s approach to alleviate this...
https://github.com/Azure/azure-sdk-for-cpp/search?l=C%2B%2B&q=noexcept The string extension methods shouldn't be marked noexcept. Audit other instances, like the ones in DateTime. Use of it in places like `Nullable` is expected and OK. Ignore instances...