bmc-msft
bmc-msft
In the Azure portal and Storage Explorer, when you generate a SAS token, you are given the option to use the generated SAS URL, which can include much of the...
Example source: ```python from memoization import cached import inspect class A: @cached(ttl=1) def b(self, name: str) -> int: return len(name) * 2 def a(self) -> bool: return self.b('hello') == 10...
It would be great if the `actions` API was supported. Ref: https://docs.github.com/en/free-pro-team@latest/rest/reference/actions
Azure Devops includes rate limits that could be complex to predict in an automated solution. According to the documentation, the endpoints provide [headers in responses](https://docs.microsoft.com/en-us/azure/devops/integrate/concepts/rate-limits?view=azure-devops#recommendations) in the instances that the...
It appears that the [bulk work item update](https://docs.microsoft.com/en-us/rest/api/azure/devops/wit/WorkItemBatchUpdate?view=azure-devops-rest-5.0) is not implemented. Is this on the roadmap for implementation?
In one of my workflows, I have one job that makes an artifact and uploads it using `actions/upload-artifact`, then a dependent job downloads it using `actions/download-artifact`. *Most* of the time,...
User functions have a single global log level. It would beneficial to enable an consistent mechanism to add filter [logging](https://docs.python.org/3/library/logging.html#filter-objects) prior to the logs hitting app-insights.
## To Reproduce ``` echo hi > /dev/stderr echo hi > /dev/stdout ``` ## Observed Behavior ``` $ echo hi > /dev/stdout bash: /dev/stdout: Permission denied $ $ echo hi...