id stringlengths 4 10 | text stringlengths 4 2.14M | source stringclasses 2
values | created timestamp[s]date 2001-05-16 21:05:09 2025-01-01 03:38:30 | added stringdate 2025-04-01 04:05:38 2025-04-01 07:14:06 | metadata dict |
|---|---|---|---|---|---|
575352272 | JSDoc: @inheritDoc disregards optionality of parameters from parent class method
TypeScript Version: 3.8.3
Search Terms: inheritDoc optionality jsdoc
Code
A conceptual example of JSDoc-annotated ES6 classes I'm generating d.ts definitions for
class Base {
/**
* @abstract
* @param {Array<import("./Layer.js... | gharchive/issue | 2020-03-04T12:10:49 | 2025-04-01T04:57:31.760133 | {
"authors": [
"jumpinjackie",
"weswigham"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/37210",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
692884962 | Type '{ className: string; }' is not assignable to type 'IntrinsicAttributes & Props'. when using generics in component props.
TypeScript Version: 3.9.7
Search Terms:
Type is not assignable to type 'IntrinsicAttributes & Props'.
Property does not exist on type 'IntrinsicAttributes & Props'
Code
This doesn't work.
... | gharchive/issue | 2020-09-04T08:23:58 | 2025-04-01T04:57:31.783912 | {
"authors": [
"Inna-Mykytiuk",
"RyanCavanaugh",
"nvmnghia",
"rostislav-simonik",
"rostislav-simonik-plc",
"weswigham"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/40383",
"license": "Apache-2.0",
"license_type": "permissive",
"license_s... |
735705415 | ReturnType not being evaluated when used in function definition generics alias
Scenario:
Given an indexed object of functions that return different value types, generate a new object with the same indexes and the return value of the functions.
const given = {
foo: () => 1,
bar: () => 'milka',
};
const generatedR... | gharchive/issue | 2020-11-03T23:36:51 | 2025-04-01T04:57:31.814405 | {
"authors": [
"AnyhowStep",
"MartinJohns",
"RyanCavanaugh",
"carlos-algms"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/41391",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
753967952 | String literal type is always widened when used as a generic type parameter
TypeScript Version: v4.2.0-dev.20201130
Search Terms: widening type parameter
Code:
function fn<T extends 'foo' | 'bar'>(a: T, b: T) {}
fn('foo', 'bar');
Expected behavior: Argument of type '"bar"' is not assignable to parameter of type '"f... | gharchive/issue | 2020-12-01T03:13:13 | 2025-04-01T04:57:31.836810 | {
"authors": [
"RyanCavanaugh",
"SyntaxBlitz",
"jcalz"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/41742",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
757874577 | Can't assign to conditional generic within generic
Hi I was trying to do something much more complicated than this with conditionals without success, I was reducing the issue down and down and I found this, which I find a bit weird, I was hoping someone might be able to enlighten me of a work around?
TypeScript Ver... | gharchive/issue | 2020-12-06T08:24:42 | 2025-04-01T04:57:31.842031 | {
"authors": [
"MartinJohns",
"ayroblu"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/41837",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
850609234 | Incorrect Report that an Object may be null
Bug Report
🔎 Search Terms
Object is possibly 'null'
undefined
🕗 Version & Regression Information
This is the behavior in every version I tried, and I reviewed the FAQ for entries about unexpected warnings about possible 'null's and 'undefined's.
I tried versions 3.3.3... | gharchive/issue | 2021-04-05T19:38:03 | 2025-04-01T04:57:31.847963 | {
"authors": [
"DanielRosenwasser",
"andrewbranch",
"legodude17"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/43537",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1175750911 | Inconsistent boolean literal types
🕗 Version & Regression Information
This is the behavior in every version I tried.
⏯ Playground Link
Playground link with relevant code
💻 Code
type Box<T> = {
get: () => T,
set: (value: T) => void
}
declare function box<T>(value: T): Box<T>;
const bn1 = box(0); // Box<nu... | gharchive/issue | 2022-03-21T18:04:04 | 2025-04-01T04:57:31.854890 | {
"authors": [
"MartinJohns",
"ahejlsberg"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/48363",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1427365615 | in operator typeguard precision loss
Bug Report
🔎 Search Terms
🕗 Version & Regression Information
v4.9.0 v4.9.1
⏯ Playground Link
Playground link with relevant code
💻 Code
function addressOrThrow(value: unknown) {
if (typeof value !== "object" || value == null) throw new TypeError();
if (!("street" in value) ... | gharchive/issue | 2022-10-28T14:41:28 | 2025-04-01T04:57:31.861117 | {
"authors": [
"RyanCavanaugh",
"arahansen",
"kamalesh0406",
"santa-trout"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/51339",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1657720312 | infer Self
Suggestion
🔍 Search Terms
Automatic generic parameter
Generic type self reference
Generic Self keyword
Infer Self
Exclude from any
✅ Viability Checklist
My suggestion meets these guidelines:
[x] (I think) This wouldn't be a breaking change in existing TypeScript/JavaScript code
[x] (if done right) This wo... | gharchive/issue | 2023-04-06T16:26:29 | 2025-04-01T04:57:31.873784 | {
"authors": [
"Andarist",
"RyanCavanaugh",
"henrikeliq"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/53690",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1760589133 | Quick fix module imports suggestions does not work with newly installed packages.
Bug Report
Quick fix module imports suggestion does not work with newly installed packages.
The TS Server does not seem to scan the node_modules package that have been newly installed, even after restarting TS Server, or after restartin... | gharchive/issue | 2023-06-16T12:55:26 | 2025-04-01T04:57:31.881590 | {
"authors": [
"Anthony-Breneliere",
"RyanCavanaugh"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/54671",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2130711045 | [TS 5.4.0-beta] Tuple type members being perserved
🔎 Search Terms
spread tuple type narrowing
🕗 Version & Regression Information
This changed between versions 5.3.3 and 5.4.0-beta
This changed in 5.4.0-dev.20240120
⏯ Playground Link
https://www.typescriptlang.org/play?ts=5.4.0-beta#code/CYUwxgNghgTiAEAzArgOzAFwJY... | gharchive/issue | 2024-02-12T18:24:19 | 2025-04-01T04:57:31.888604 | {
"authors": [
"Andarist",
"acutmore"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/57389",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2431673377 | tsconfig.json option to ignore error TS2307 (or any specific error)
🔍 Search Terms
TS2307
Ignoring specific error
✅ Viability Checklist
[X] This wouldn't be a breaking change in existing TypeScript/JavaScript code
[X] This wouldn't change the runtime behavior of existing JavaScript code
[X] This could be implemen... | gharchive/issue | 2024-07-26T08:08:09 | 2025-04-01T04:57:31.898985 | {
"authors": [
"BalaM314",
"MartinJohns",
"jcalz",
"pferreir"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/issues/59429",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1471880247 | Updates to type reference directive resolution and module resolution when failed
When user has supplied typeRoots resolve the typeReference as file or directory instead of just directory resolution as before.
1c2318d92e2e93c99b8ed87419470ddfd7719796 This is fix for issue Bug 2 reported in #37708
If configuration has... | gharchive/pull-request | 2022-12-01T19:59:58 | 2025-04-01T04:57:31.908990 | {
"authors": [
"Abrarhaj",
"RyanCavanaugh",
"andrewbranch",
"ehoogeveen-medweb",
"sandersn",
"sheetalkamat",
"sisiea"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/pull/51715",
"license": "Apache-2.0",
"license_type": "permissive",
"license_... |
1556733296 | Fixed a mistake in the narrowingDestructuring test
closes https://github.com/microsoft/TypeScript/issues/52410
Thanks!
| gharchive/pull-request | 2023-01-25T14:16:44 | 2025-04-01T04:57:31.910699 | {
"authors": [
"Andarist",
"RyanCavanaugh"
],
"repo": "microsoft/TypeScript",
"url": "https://github.com/microsoft/TypeScript/pull/52411",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
449634935 | Labels are incorrect in Active Learning
Incorrect labels in Active Learning
The problem seems caused by the label offset in src/providers/activeLearning/objectDetection.ts and it can be fixed by apply following patch.
Patch file
diff --git a/src/providers/activeLearning/objectDetection.ts b/src/providers/activeLearn... | gharchive/issue | 2019-05-29T07:10:09 | 2025-04-01T04:57:31.915317 | {
"authors": [
"Dahlasam",
"csaroff",
"dino-su",
"matthieu-lapeyre"
],
"repo": "microsoft/VoTT",
"url": "https://github.com/microsoft/VoTT/issues/812",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1594328679 | I can't find this package in the NuGet package Manager
Today, I use this package , I open the NuGet Package Manager and type Microsoft.Wpf.Interop.DirectX. I find I can't search this package, But the NuGet package Manager give me another package: TqkLibrary.Wpf.Interop.DirectX, Why? The Microsoft.Wpf.Interop.DirectX ... | gharchive/issue | 2023-02-22T01:55:19 | 2025-04-01T04:57:31.917916 | {
"authors": [
"KnewHow"
],
"repo": "microsoft/WPFDXInterop",
"url": "https://github.com/microsoft/WPFDXInterop/issues/46",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2441242668 | Odd clock stretching when WSL is installed
So kind of an odd issue, is similar to the windows defender bug.
So I have my 9900K at 4.7ghz, I've known windows to be a bit finicky with windows defender specifically real time protection which messes up effective clocks. When I have real time protection enabled, my effect... | gharchive/issue | 2024-08-01T01:35:22 | 2025-04-01T04:57:31.923489 | {
"authors": [
"Matteo-Di-Rienzo"
],
"repo": "microsoft/WSL",
"url": "https://github.com/microsoft/WSL/issues/11866",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
221608870 | Custom resolv.conf being replaced by generated file, even with comment removed.
A brief description
Custom /etc/resolv.conf overwritten, even when "# This file was automatically generated by WSL. To stop automatic generation of this file, remove this line." is removed.
Expected results
Custom /etc/resolv.conf sho... | gharchive/issue | 2017-04-13T16:04:30 | 2025-04-01T04:57:31.956742 | {
"authors": [
"Johawila",
"KatSteinke",
"KevinSilvaQuintana",
"Spongman",
"adipose",
"andrewr01",
"benhillis",
"bradley101",
"brandonmreese",
"daghb",
"glasko-dp",
"gustavlasko",
"j-c-m",
"jakethedev",
"julian7",
"jvosper",
"liechtir",
"lmayorga... |
511438079 | Unable to install/enable Virtual Machine Platform
I'm on build 19008. Whenever I try to install/enable Virtual Machine Platform I get a green screen (attached). I did not install either Windows Subsystem For Linux or Virtual Machine Platform prior to this attempt, on any previous versions of Windows - this is the f... | gharchive/issue | 2019-10-23T16:26:35 | 2025-04-01T04:57:31.962143 | {
"authors": [
"benhillis",
"smare",
"therealkenc"
],
"repo": "microsoft/WSL",
"url": "https://github.com/microsoft/WSL/issues/4614",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
160332698 | TrueCrypt drives don't show up in WSL
Reproducer:
Download Windows TrueCrypt 7.1a from grc.com. (Don't use TrueCrypt 7.2; TrueCrypt has been discontinued, that version is only capable of decrypting existing drives.)
Install the application. Open the application.
Create a file-backed encrypted volume. Stick with th... | gharchive/issue | 2016-06-15T03:46:59 | 2025-04-01T04:57:31.973197 | {
"authors": [
"0xFireball",
"Biswa96",
"DHowett",
"aseering",
"benhillis",
"caleb15",
"chris-caat",
"dzek69",
"kkeane",
"mb2g17",
"sense-it-gmbh",
"therealkenc"
],
"repo": "microsoft/WSL",
"url": "https://github.com/microsoft/WSL/issues/530",
"license": "MIT",
... |
754080712 | WSL2 terminates the moment my laptop is unplugged from electricity
Environment
Windows build number: Microsoft Windows [Version 10.0.19041.508]
Your Distribution version: Debian 10
Whether the issue is on WSL 2 and/or WSL 1: WSL 2, Linux version 4.19.128-microsoft-standard (oe-user@oe-host) (gcc version 8.2.0 (GCC)... | gharchive/issue | 2020-12-01T07:03:33 | 2025-04-01T04:57:31.983061 | {
"authors": [
"Biswa96",
"CeSiumUA",
"benyaminl",
"kierke-gaard",
"laralex"
],
"repo": "microsoft/WSL",
"url": "https://github.com/microsoft/WSL/issues/6296",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
856057445 | v2/snaps/chromium System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
Windows Build Number
19041
WSL Version
WSL 2
Distro Version
Ubuntu 20.04
Other Software
installing Chromium-browser in Ubuntu with VS Code, Windows Terminal,
Repro Steps
$ sudo apt... | gharchive/issue | 2021-04-12T14:50:17 | 2025-04-01T04:57:31.987806 | {
"authors": [
"newcanopies",
"therealkenc"
],
"repo": "microsoft/WSL",
"url": "https://github.com/microsoft/WSL/issues/6796",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1473310796 | Error code: Wsl/InstallDistro/0x8007139f on Windows Server 2022
Version
Microsoft Windows [version 10.0.20348.1311]
under Hyper-V, Nested Virtualisation activated, Intel CPU
WSL Version
[X] WSL 2
[ ] WSL 1
Kernel Version
No response
Distro Version
No response
Other Software
No response
Repro Steps
wsl --install
(re... | gharchive/issue | 2022-12-02T19:01:15 | 2025-04-01T04:57:32.009531 | {
"authors": [
"Biswa96",
"KRAOUFI",
"OneBlue",
"RuffJK",
"app-EL",
"benhillis",
"cintya-takahaschi",
"elsaco",
"kbrannon95",
"proludiojon",
"pyh-129",
"sirber"
],
"repo": "microsoft/WSL",
"url": "https://github.com/microsoft/WSL/issues/9258",
"license": "MIT",
... |
708693479 | It can connect to open software via process ID?
my application open complex,the winappdriver if surpport connect the open application by Process ID?
can you share some code and which language binding are you using
| gharchive/issue | 2020-09-25T06:53:54 | 2025-04-01T04:57:32.011398 | {
"authors": [
"anunay1",
"sukekes"
],
"repo": "microsoft/WinAppDriver",
"url": "https://github.com/microsoft/WinAppDriver/issues/1324",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1936902964 | how to get element list?
I want to click this button
but I can't get a list of buttons.
how to get it?
I tried this but fail
`
String xpath = "/Pane[@ClassName="#32769"][@Name="데스크톱 1"]/Window[@ClassName="#32770"][@Name="네이버 MYBOX 탐색기"]";
List list = (List) winapp.findElementsByXPath(xpath);`
What is shown in ins... | gharchive/issue | 2023-10-11T06:14:12 | 2025-04-01T04:57:32.016741 | {
"authors": [
"anunay1",
"gotitgit"
],
"repo": "microsoft/WinAppDriver",
"url": "https://github.com/microsoft/WinAppDriver/issues/1943",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2495685601 | Update the Train the Trainer Verbiage
Marketing came back to us this week and requested that we make minor changes specifically around the "Train-the-Trainer" phrase in our AI Tour materials. Please complete the following tasks to ensure compliance:
[x] Change "train-the-trainer" to "session-delivery-resources" in ... | gharchive/issue | 2024-08-29T22:27:29 | 2025-04-01T04:57:32.019137 | {
"authors": [
"cole-g-johnson",
"toolboc"
],
"repo": "microsoft/aitour-reimagine-fabric-intelligence",
"url": "https://github.com/microsoft/aitour-reimagine-fabric-intelligence/issues/7",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1215477686 | update to react 18
update to react 18
Just discovered this library and it would indeed be great to update the React dependencies. 🙏
| gharchive/issue | 2022-04-26T06:44:16 | 2025-04-01T04:57:32.019987 | {
"authors": [
"estruyf",
"volarname"
],
"repo": "microsoft/azure-devops-extension-sample",
"url": "https://github.com/microsoft/azure-devops-extension-sample/issues/101",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1439078264 | Fails deploying azure function using azure cli auth type
Plugin name and version
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-functions-maven-plugin</artifactId>
<version>1.21.0</version>
</plugin>
Plugin configuration i... | gharchive/issue | 2022-11-07T22:14:34 | 2025-04-01T04:57:32.029977 | {
"authors": [
"AidenFawkes",
"jleonelion",
"pankajagrawal16",
"wangmingliang-ms"
],
"repo": "microsoft/azure-maven-plugins",
"url": "https://github.com/microsoft/azure-maven-plugins/issues/2165",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2005557157 | Self-service admin for event organisers
Presently, when you want to add a new event, this requires going into the Azure resource group, accessing the Storage account and adding a new record to the table, or using one of the management REST APIs that are available (provided you have the appropriate access token).
Ther... | gharchive/issue | 2023-11-22T04:33:53 | 2025-04-01T04:57:32.033884 | {
"authors": [
"aaronpowell",
"gloveboxes"
],
"repo": "microsoft/azure-openai-service-proxy",
"url": "https://github.com/microsoft/azure-openai-service-proxy/issues/38",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
154959461 | Configuration & running agent behind corporate proxy
Wondering if there is a way we can specify proxy settings when running the configuration?
At the moment within corporate boundaries I'm getting this after running ./config.sh and entering my server URL and PAT ...
Connecting to server ...
An error occurred while ... | gharchive/issue | 2016-05-16T04:40:48 | 2025-04-01T04:57:32.064382 | {
"authors": [
"4F2E4A2E",
"ARMAAN7139",
"TingluoHuang",
"bryanmacfarlane",
"claytob86",
"jdshkolnik",
"jhmoy",
"naveenkumargc",
"schnitty",
"steveplatz",
"stiliev",
"zoltanlogo"
],
"repo": "microsoft/azure-pipelines-agent",
"url": "https://github.com/microsoft/az... |
1079409774 | Build pipeline using older version of node always ? unable to change to new version
Use Node Task output
Starting: Use Node
Task : Node.js tool installer
Description : Finds or downloads and caches the specified version spec of Node.js and adds it to the PATH
Version : 0.192.0
Author : Microsoft C... | gharchive/issue | 2021-12-14T07:34:15 | 2025-04-01T04:57:32.110284 | {
"authors": [
"anatolybolshakov",
"sathishreddy48"
],
"repo": "microsoft/azure-pipelines-agent",
"url": "https://github.com/microsoft/azure-pipelines-agent/issues/3659",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1857348526 | Migrate to Node 20
Task description
In order to migrate tasks to the Node20 execution handler, we have to update the pipelines-task-lib itself to support the Node20 runtime.
Changelog
Created a new release branch releases/5.x
Added node20 to task.schema.json
Update node 20 version in pipelines
Update node 20 version... | gharchive/pull-request | 2023-08-18T22:16:58 | 2025-04-01T04:57:32.116510 | {
"authors": [
"Drarig29",
"MirKml",
"max-zaytsev",
"qianz2"
],
"repo": "microsoft/azure-pipelines-task-lib",
"url": "https://github.com/microsoft/azure-pipelines-task-lib/pull/962",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1811468290 | [Question]: XamariniOS@2 does not generate .dSYM file
Task name
XamariniOS@2
Task version
No response
Environment type (Please select at least one enviroment where you face this issue)
[ ] Self-Hosted
[X] Microsoft Hosted
[ ] VMSS Pool
[ ] Container
Azure DevOps Server type
dev.azure.com (formerly visualstudio.com)... | gharchive/issue | 2023-07-19T08:45:12 | 2025-04-01T04:57:32.120895 | {
"authors": [
"aleksandrlevochkin",
"huyvuskedulo"
],
"repo": "microsoft/azure-pipelines-tasks",
"url": "https://github.com/microsoft/azure-pipelines-tasks/issues/18668",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
520312343 | File bugs for teams with lots of bugs, especially stale ones
This PR adds an action step that files bugs to teams for which one of the following is true.
The team has >100 issues opened with the label bug.
The team has >10 issues opened with the label bug that are stale (>30 days without action).
The team has >0 iss... | gharchive/pull-request | 2019-11-09T01:45:26 | 2025-04-01T04:57:32.123306 | {
"authors": [
"damccorm"
],
"repo": "microsoft/azure-pipelines-tasks",
"url": "https://github.com/microsoft/azure-pipelines-tasks/pull/11721",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2109155252 | Terraform init failure on Azure Devops Pipeline
Dear gurus,
i have been working on fixing this issue with no luck and i hope i could have some advise here, thank you in advance.
I have a simple yaml file below:
Starter pipeline
Start with a minimal pipeline that you can customize to build and deploy your code.
Add st... | gharchive/issue | 2024-01-31T02:23:48 | 2025-04-01T04:57:32.165730 | {
"authors": [
"PullaiahDegala",
"WXRK",
"dcarvalh04",
"jantzen05",
"jaredfholgate",
"jmlp1",
"vedbharathi"
],
"repo": "microsoft/azure-pipelines-terraform",
"url": "https://github.com/microsoft/azure-pipelines-terraform/issues/209",
"license": "MIT",
"license_type": "permissive"... |
2286105589 | Failed to deploy HCIBox: failure when processing extension 'Bootstrap' Missing an argument for parameter 'spnProviderId'
Is your issue related to a Jumpstart scenario, ArcBox, HCIBox, or Agora?
HCIBox
Describe the issue or the bug
The deployment of HCIbox via AZD failed during the : Creating/Updating resources fase... | gharchive/issue | 2024-05-08T17:36:40 | 2025-04-01T04:57:32.182480 | {
"authors": [
"ewouds",
"janegilring"
],
"repo": "microsoft/azure_arc",
"url": "https://github.com/microsoft/azure_arc/issues/2541",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
670227103 | Allow edit of Sqlproj in place and Reload
Sql project should allow righclick open and edit of Sqlproj file and a toast notif for reload after the update.
related for reload : https://github.com/microsoft/azuredatastudio/issues/11047
| gharchive/issue | 2020-07-31T20:58:04 | 2025-04-01T04:57:32.184004 | {
"authors": [
"udeeshagautam"
],
"repo": "microsoft/azuredatastudio",
"url": "https://github.com/microsoft/azuredatastudio/issues/11600",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
467337446 | Missing dashboard.database.widgets JSON settings
Issue Type: Bug
I am unable to add customized widgets due to lacking dashboard.database.widgets inside settings.json file. After manually inserting following JSON code:
"dashboard.database.widgets": [
{
"name": "My-Widget",
"gridItemConfig": {
... | gharchive/issue | 2019-07-12T10:19:16 | 2025-04-01T04:57:32.201365 | {
"authors": [
"Charles-Gagnon",
"jsarnowski96",
"yualan"
],
"repo": "microsoft/azuredatastudio",
"url": "https://github.com/microsoft/azuredatastudio/issues/6368",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
503650305 | Corrupted .ipynb file
Azure Data Studio Version: 1.12.0-insider (1-Oct daily build)
Steps to Reproduce:
I had a SQL Notebook open in ADS with unsaved changes.
I installed the 1-Oct 2019 Insiders Build, without saving changes.
When ADS restarted, and re-opened the notebook, the notebook appeared to be corrupted, c... | gharchive/issue | 2019-10-07T19:40:42 | 2025-04-01T04:57:32.207543 | {
"authors": [
"aaomidi",
"amtwo",
"chlafreniere",
"vickyharp"
],
"repo": "microsoft/azuredatastudio",
"url": "https://github.com/microsoft/azuredatastudio/issues/7543",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1217837612 | Enable autoflush for STS logs
A problem I've noticed a bunch when looking at the MSSQL logs it that they'll often be incomplete - sometimes only containing part of a log message.
The issue is that currently we write the log messages but don't flush it manually, which means that it only gets written to disk when the b... | gharchive/pull-request | 2022-04-27T20:15:49 | 2025-04-01T04:57:32.213815 | {
"authors": [
"Charles-Gagnon",
"coveralls"
],
"repo": "microsoft/azuredatastudio",
"url": "https://github.com/microsoft/azuredatastudio/pull/19236",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1343409440 | Fix table designer reloading when only descriptions are being updated
https://github.com/microsoft/azuredatastudio/issues/20366
ADS Port PR: https://github.com/microsoft/azuredatastudio/pull/20394
https://github.com/microsoft/sqltoolsservice/compare/4.3.0.3...4.3.0.4
Pull Request Test Coverage Report for Build 288... | gharchive/pull-request | 2022-08-18T17:38:38 | 2025-04-01T04:57:32.221978 | {
"authors": [
"caohai",
"coveralls"
],
"repo": "microsoft/azuredatastudio",
"url": "https://github.com/microsoft/azuredatastudio/pull/20405",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
478068149 | Nb/open book without reload
Made the following changes to launch book from the dashboard widget:
Removed the prompt to 'Pick Folder' and save books.
On click launch the first markdown/notebook file in the book and expand the book.
Added command to launch the book from command pallet.
Pending items:
Provide a ... | gharchive/pull-request | 2019-08-07T18:08:15 | 2025-04-01T04:57:32.224153 | {
"authors": [
"MaddyDev"
],
"repo": "microsoft/azuredatastudio",
"url": "https://github.com/microsoft/azuredatastudio/pull/6635",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2376608864 | cert support for python sdk
Use this query to search for the most popular feature requests.
Is your feature request related to a problem? Please describe.
The botbuilder js/ts and c# sdk already supports cert but python doesn't support yet.
Describe the solution you'd like
A clear and concise description of what you ... | gharchive/issue | 2024-06-27T02:33:37 | 2025-04-01T04:57:32.226948 | {
"authors": [
"tracyboehrer",
"yukun-dong"
],
"repo": "microsoft/botbuilder-python",
"url": "https://github.com/microsoft/botbuilder-python/issues/2128",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1279280304 | Add list of supported decorators to documents
It would be great if there were a documentation page describing the list of supported decorators so these were easily discoverable to Cadl users. Thanks!
Update, I found this: https://github.com/microsoft/cadl/blob/main/docs/tutorial.md#built-in-decorators, but it doesn'... | gharchive/issue | 2022-06-22T00:38:18 | 2025-04-01T04:57:32.236642 | {
"authors": [
"allenjzhang",
"annelo-msft",
"nguerrera"
],
"repo": "microsoft/cadl",
"url": "https://github.com/microsoft/cadl/issues/653",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
639498023 | Function Analysis is not working for x=y
A team member will update this issue with more details soon.
This is your friendly Microsoft Issue Bot. I created this issue automatically as requested by a team member.
| gharchive/issue | 2020-06-16T09:02:27 | 2025-04-01T04:57:32.237642 | {
"authors": [
"MicrosoftIssueBot"
],
"repo": "microsoft/calculator",
"url": "https://github.com/microsoft/calculator/issues/1277",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
753385505 | Update README.md
Fixes #.
Description of the changes:
How changes were validated:
Thanks for your interest in the project, but we generally do not accept documentation changes unless there are typos or spelling mistakes.
| gharchive/pull-request | 2020-11-30T11:12:06 | 2025-04-01T04:57:32.239509 | {
"authors": [
"NitinLodha2812",
"mcooley"
],
"repo": "microsoft/calculator",
"url": "https://github.com/microsoft/calculator/pull/1445",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
448336555 | Feature/graphing calculator
Fixes #.
Description of the changes:
How changes were validated:
Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.:x: gxa2019 sign nowYou have ... | gharchive/pull-request | 2019-05-24T20:13:12 | 2025-04-01T04:57:32.242871 | {
"authors": [
"gxa2019",
"msftclas"
],
"repo": "microsoft/calculator",
"url": "https://github.com/microsoft/calculator/pull/522",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
915989132 | Creating API contract with Design-first or Code-first Approach
Is your feature request related to a problem? Please describe.
As now days development teams widely use API description formats like Swagger (OpenAPI) to describe an API contracts, which brings a question whether a dev team should design an API contract f... | gharchive/issue | 2021-06-09T09:25:35 | 2025-04-01T04:57:32.245771 | {
"authors": [
"cpeeyush",
"fnocera"
],
"repo": "microsoft/code-with-engineering-playbook",
"url": "https://github.com/microsoft/code-with-engineering-playbook/issues/660",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1704721876 | fix(experiments): add ctor to ExperimentDiff
This is needed for JSON deserialization. Also updated the xml docs to follow the "standard" text.+
Can you use the init auto-property to achieve the same effect?
Can you use the init auto-property to achieve the same effect?
Yea, but then you can not ensure that all ... | gharchive/pull-request | 2023-05-10T22:49:58 | 2025-04-01T04:57:32.264364 | {
"authors": [
"JamieMagee",
"melotic"
],
"repo": "microsoft/component-detection",
"url": "https://github.com/microsoft/component-detection/pull/562",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
873443092 | Add Multiple LogManager support for Privacy Guard
The current implementation of Privacy Guard does not work with multiple log manager scenario.
This change introduces PrivacyGuardState class that holds and maintains the PrivacyGuard shared_ptr. It then conveys the ptr to LogManager_jni or PrivacyGuard_jni as needed. ... | gharchive/pull-request | 2021-04-30T22:47:06 | 2025-04-01T04:57:32.265757 | {
"authors": [
"sid-dahiya"
],
"repo": "microsoft/cpp_client_telemetry",
"url": "https://github.com/microsoft/cpp_client_telemetry/pull/850",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2385990246 | Force authentication
Can we prevent --allow-anonymous.
We can't use dev tunnels because we cannot have unauthenticated traffic coming in through the firewall.
Group Policies can be used for this on Windows devices - https://learn.microsoft.com/en-us/azure/developer/dev-tunnels/policies
Closing this as stale but p... | gharchive/issue | 2024-07-02T11:19:42 | 2025-04-01T04:57:32.267639 | {
"authors": [
"derekbekoe",
"mikeblakeuk"
],
"repo": "microsoft/dev-tunnels",
"url": "https://github.com/microsoft/dev-tunnels/issues/459",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
584677687 | MSBuild is broken in the SDK 4.8 Images
Steps to reproduce the issue
Execute docker run --rm mcr.microsoft.com/dotnet/framework/sdk:4.8-20200211-windowsservercore-ltsc2019 msbuild -version
Expected behavior
The version number of MSBuild appears and the container exits.
Actual behavior
Nothing appears and the contai... | gharchive/issue | 2020-03-19T20:23:38 | 2025-04-01T04:57:32.273168 | {
"authors": [
"mkaring",
"mthalman"
],
"repo": "microsoft/dotnet-framework-docker",
"url": "https://github.com/microsoft/dotnet-framework-docker/issues/548",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
575539770 | I tried your notebook and got an error
I tried your notebook and got the following error:
Charles
Ah, not sure why that error shows up. Can you try running the notebooks again to see if it works? I just tried and it worked for me https://mybinder.org/v2/gh/microsoft/dowhy/master?filepath=docs%2Fsource%2F
I tried... | gharchive/issue | 2020-03-04T16:07:53 | 2025-04-01T04:57:32.278536 | {
"authors": [
"CBrauer",
"amit-sharma"
],
"repo": "microsoft/dowhy",
"url": "https://github.com/microsoft/dowhy/issues/116",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1404378154 | Fix compilation on Ubuntu 22.04.
This PR fixes compilation errors on Ubuntu 22.04 caused by linkage issues (fix #4).
Please see the commit log for a quick summary of changes.
Notes
I hope I preserved the right semantics with "what to extern" vs. "what to split into its own global variable", but you should probably c... | gharchive/pull-request | 2022-10-11T10:11:26 | 2025-04-01T04:57:32.281208 | {
"authors": [
"lmwnshn"
],
"repo": "microsoft/dsb",
"url": "https://github.com/microsoft/dsb/pull/5",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1809668793 | Allow dependency injection in orchestrations
DurableTaskRegistry allows DI in activities but not in orchestrations. This doesn't seem like a technical limitation, as the internal Orchestrators dictionary uses a delegate that accepts IServiceProvider. Would it be possible to fix this gap by adding overloads to the reg... | gharchive/issue | 2023-07-18T10:42:30 | 2025-04-01T04:57:32.286004 | {
"authors": [
"aelij",
"jviau"
],
"repo": "microsoft/durabletask-dotnet",
"url": "https://github.com/microsoft/durabletask-dotnet/issues/168",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1797109008 | enable resume and suspend
Issue describing the changes in this PR
Support resuming and suspending orchestration.
Pull request checklist
[ ] My changes do not require documentation changes
[X] Otherwise: Documentation issue linked to PR
[X] My changes are added to the CHANGELOG.md
[X] I have added all required te... | gharchive/pull-request | 2023-07-10T16:23:30 | 2025-04-01T04:57:32.290173 | {
"authors": [
"kaibocai"
],
"repo": "microsoft/durabletask-java",
"url": "https://github.com/microsoft/durabletask-java/pull/151",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
925850165 | general helper NPI provider does not provide function prototype data (and other issues)
the NPI modules in eBPF core and netext has several issues. This issue is used as a placeholder for tracking all these.
[x] Global helper NPI provider in EC (for map functions) dont provide the prototype information. They are ob... | gharchive/issue | 2021-06-21T05:51:28 | 2025-04-01T04:57:32.292347 | {
"authors": [
"shankarseal"
],
"repo": "microsoft/ebpf-for-windows",
"url": "https://github.com/microsoft/ebpf-for-windows/issues/291",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2082585279 | Issues accesing Teams with Deletated scenario
Hi there,
I have configured my ogle migration app with the Delegated scenario. In the app registration I have entered the https://localhost, as er documentation.
When I try to sign in into Teams, to get the M365 Edu credentials, I receive an error:
AADSTS50011: The redire... | gharchive/issue | 2024-01-15T19:34:51 | 2025-04-01T04:57:32.295824 | {
"authors": [
"cristobal-buenrostro",
"gabrielantohi"
],
"repo": "microsoft/edu-assignments-graph-sdk",
"url": "https://github.com/microsoft/edu-assignments-graph-sdk/issues/15",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
387724157 | Support conditional updates
User story
As a [source] FHIR-server that needs to sync FHIR resources to target FHIR-servers, I want to be able to update resources in the microsoft-FHIR server - using identifiers, not having to use ids. The benefit is that the the source is not required to store the ids returned by micr... | gharchive/issue | 2018-12-05T11:59:02 | 2025-04-01T04:57:32.321842 | {
"authors": [
"brandonpollett",
"brendankowitz",
"courtenayparserr",
"hansenms",
"jmehlbrech",
"matjazl"
],
"repo": "microsoft/fhir-server",
"url": "https://github.com/microsoft/fhir-server/issues/236",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"... |
999967537 | [Improve Usability] BadgeView textColor needs to be an Objc property.
Environment Information
Platform:
[ ] iOS
Please provide a reproduction of the bug:
--> I am using BadgeView in my project where I can change the text color and background color of the badge in swift file but I cannot do the same for Objc code... | gharchive/issue | 2021-09-18T08:14:19 | 2025-04-01T04:57:32.325691 | {
"authors": [
"ashislaha"
],
"repo": "microsoft/fluentui-apple",
"url": "https://github.com/microsoft/fluentui-apple/issues/711",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2358281184 | Null results for GitHub users GET request
What are you generating using Kiota, clients or plugins?
API Client/SDK
In what context or format are you using Kiota?
Nuget tool
Client library/SDK language
Csharp
Describe the bug
I am trying to get users from the GitHub API, like var users = await gitHubClient.Users["kfcam... | gharchive/issue | 2024-06-17T21:20:53 | 2025-04-01T04:57:32.539896 | {
"authors": [
"baywet",
"kfcampbell",
"nickfloyd"
],
"repo": "microsoft/kiota",
"url": "https://github.com/microsoft/kiota/issues/4844",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
623879696 | client->server request: matching brace
Another request from rust-analyzer
Matching Brace
Server Capability: { "matchingBrace": boolean }
This request is send from client to server to handle "Matching Brace" editor action.
Method: experimental/matchingBrace
Request:
interface MatchingBraceParams {
textDocument: Te... | gharchive/issue | 2020-05-24T14:50:19 | 2025-04-01T04:57:32.546987 | {
"authors": [
"dbaeumer",
"matklad"
],
"repo": "microsoft/language-server-protocol",
"url": "https://github.com/microsoft/language-server-protocol/issues/999",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2594710324 | Raise exception when getting timeout for running cmd to detect OS
For some images, like sciencelogicinc1622565452194, middleware publisher's images, running some basic commands will be time out. This is due to the image not allow to run commands or in bad state.
In _get_detect_string, there are more than 10 commands ... | gharchive/pull-request | 2024-10-17T13:13:20 | 2025-04-01T04:57:32.548802 | {
"authors": [
"lubaihua33",
"squirrelsc"
],
"repo": "microsoft/lisa",
"url": "https://github.com/microsoft/lisa/pull/3477",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
834556060 | MUXControlsTestApp crashes with old styles
MUXControlsTestApp crashes when using old styles upon navigating to CommonStyles page with following error message:
Windows.UI.Xaml.Markup.XamlParseException: 'The text associated with this error code could not be found.
Cannot find a Resource with the Name/Key DefaultGridV... | gharchive/issue | 2021-03-18T09:07:29 | 2025-04-01T04:57:32.550883 | {
"authors": [
"chingucoding",
"ranjeshj"
],
"repo": "microsoft/microsoft-ui-xaml",
"url": "https://github.com/microsoft/microsoft-ui-xaml/issues/4566",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
927076966 | ContentDialog.ShowAsync() throws ArgumentException
Describe the bug
ContentDialog contentDialog = new ContentDialog();
contentDialog.Title = "Hello!";
contentDialog.Content = "Hello from WinUI 3";
contentDialog.PrimaryButtonText = "OK";
await contentDialog.ShowAsync();
throws ArgumentException, but it works in UWP.
... | gharchive/issue | 2021-06-22T10:23:41 | 2025-04-01T04:57:32.559442 | {
"authors": [
"Baka632",
"Marv51",
"sylveon"
],
"repo": "microsoft/microsoft-ui-xaml",
"url": "https://github.com/microsoft/microsoft-ui-xaml/issues/5239",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
566417521 | remove duplicate entry causing solution load errors.
RadioButton_themeresources.xaml is included from multiple projects causing the mux project to not load in visual studio. msbuild seems to happily ignore it though - so it does not cause a build break in the pipelines.
Fixes #1982
<Type>ThemeResources</Type>
... | gharchive/pull-request | 2020-02-17T16:49:27 | 2025-04-01T04:57:32.565318 | {
"authors": [
"StephenLPeters",
"chingucoding",
"kmahone",
"ojhad",
"ranjeshj"
],
"repo": "microsoft/microsoft-ui-xaml",
"url": "https://github.com/microsoft/microsoft-ui-xaml/pull/1987",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
455430827 | Fix some issues with MUX project incremental build
I was noticing that locally mdmerge and the DependencyPropertyCodeGen were running when they didn't need to.
XamlMetadataCodeGenMUX task didn't have its Inputs declared correctly, so fixed up that path.
DependencyPropertyCodeGen wasn't always updating timestamps on ... | gharchive/pull-request | 2019-06-12T21:22:59 | 2025-04-01T04:57:32.568545 | {
"authors": [
"jevansaks",
"kmahone"
],
"repo": "microsoft/microsoft-ui-xaml",
"url": "https://github.com/microsoft/microsoft-ui-xaml/pull/863",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2062032408 | Error from test_conv.py and convolution.py to the latest version
Originally, when I tested the file version from November 8th, everything was normal.
However, after updating the file to the latest version (Dec 8, 2023), problems arose.
When running the pytest, "test_conv.py" displays
RuntimeError: Boolean value of Te... | gharchive/issue | 2024-01-02T07:21:26 | 2025-04-01T04:57:32.571297 | {
"authors": [
"rizhao-msft",
"zks878"
],
"repo": "microsoft/microxcaling",
"url": "https://github.com/microsoft/microxcaling/issues/14",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
472917571 | Referencing C++/WinRT static library results in MSB3272
Originally filed as https://developercommunity.visualstudio.com/content/problem/629524/static-library-reference-causes-there-was-a-proble.html
Repro via @DHowett-MSFT: DoStaticCppWinrtLibrariesWorkOrNot.zip who also developed a workaround: https://github.com/mic... | gharchive/issue | 2019-07-25T15:02:05 | 2025-04-01T04:57:32.602916 | {
"authors": [
"rainersigwald"
],
"repo": "microsoft/msbuild",
"url": "https://github.com/microsoft/msbuild/issues/4547",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1045683346 | [BUG] Package project for WPF + Blazor did not include wwwroot folder
Project
MSIX SDK
Describe the bug
Use this project https://github.com/jorgearteiro/BlazorDesktopWPF as the base project and add a "Windows Application Packaing Project" for it and create a bundle you will see the wwwroot folder is not included
To R... | gharchive/issue | 2021-11-05T10:35:06 | 2025-04-01T04:57:32.607864 | {
"authors": [
"albertwoo",
"anarvekar-msft",
"jorgearteiro"
],
"repo": "microsoft/msix-packaging",
"url": "https://github.com/microsoft/msix-packaging/issues/488",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
409014717 | Building the mssql-server-windows-developer dockerfile fails
Long story short, I'm new to docker and trying to add Full Text Search (FTS) to the windows SQL developer image and it's not working.
Docker 2.0.0.2 30215. Engine 18.09.1
Windows 10 1809
I've tried rebuilding the developer image to add FTS a lot of differen... | gharchive/issue | 2019-02-11T22:54:30 | 2025-04-01T04:57:32.623562 | {
"authors": [
"SubjectiveReality",
"ducttapecoder-vt",
"forkazmoden"
],
"repo": "microsoft/mssql-docker",
"url": "https://github.com/microsoft/mssql-docker/issues/420",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1943256079 | Suggesion: Traefik Documentation
My suggestion is to a section Traefik in NavContainerHelper.md.
My first draft would be:
Docker containers are given an internal IP address on a special internal network on the local machine and they can only be reached locally. Traefik is an application proxy that allows you to run m... | gharchive/issue | 2023-10-14T13:13:18 | 2025-04-01T04:57:32.635097 | {
"authors": [
"DBiernat",
"DanielGoehler",
"KristofKlein"
],
"repo": "microsoft/navcontainerhelper",
"url": "https://github.com/microsoft/navcontainerhelper/issues/3210",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1445528929 | AttributeError: 'torch._C.Node' object has no attribute 'schema'
I use the tool to try to prue my model such as (https://github.com/microsoft/nni/blob/dab51f799f77aa72c18774faffaedf8d0ee2c977/examples/model_compress/pruning/admm_pruning_torch.py)
I only change the model(with restnet) and the dataloader:
But now there... | gharchive/issue | 2022-11-11T14:10:09 | 2025-04-01T04:57:32.642157 | {
"authors": [
"Lijiaoa",
"Louis-J",
"sunpeil"
],
"repo": "microsoft/nni",
"url": "https://github.com/microsoft/nni/issues/5224",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
846208827 | Add LSQ quantizer
This PR contains an implementation of LSQ quantizer (Learned Step Size Quantization, ICLR 2020, see here). It uses gradients to update quantization scales and can achieve sound results in our production environment, especially for lower bits.
In the mnist experiment, it can get about 99.20% top1 acc... | gharchive/pull-request | 2021-03-31T08:46:20 | 2025-04-01T04:57:32.644761 | {
"authors": [
"QuanluZhang",
"chenbohua3",
"linbinskn"
],
"repo": "microsoft/nni",
"url": "https://github.com/microsoft/nni/pull/3503",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1170408732 | Provide the ability to download the logs specific to a job
The proposal is to redirect agent logs to a blob and make it available via the cli.
On the agent
The redirection can happen in onefuzz-telemetry by adding a logic to upload to an append blob.
We should consider splitting the blob into mutliple files to preven... | gharchive/issue | 2022-03-16T00:45:26 | 2025-04-01T04:57:32.647427 | {
"authors": [
"chkeita",
"tevoinea"
],
"repo": "microsoft/onefuzz",
"url": "https://github.com/microsoft/onefuzz/issues/1711",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1199221542 | Basic devcontainer configuration
Summary of the Pull Request
Make it easier to get up and running as a contributor: provides a devcontainer configuration with dotnet, rust, and python preinstalled.
PR Checklist
[ ] Applies to work item: #xxx
[x] CLA signed. If not, go over here and sign the CLI.
[ ] Tests added/pass... | gharchive/pull-request | 2022-04-10T23:36:22 | 2025-04-01T04:57:32.651672 | {
"authors": [
"Porges"
],
"repo": "microsoft/onefuzz",
"url": "https://github.com/microsoft/onefuzz/pull/1768",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1922962013 | Release 9.1.0
Summary of the Pull Request
OneFuzz release 9.1.0
Note: OneFuzz release 9.0.0 had issues in our release pipeline, we'll be skipping 9.0.0's release to release ver 9.1.0 instead
9.1.0
Added
Agent: Added fuzz tests for coverage recording #3322
Agent: Added version checking in local tasks #3517
Agent: Cre... | gharchive/pull-request | 2023-10-02T23:10:38 | 2025-04-01T04:57:32.666332 | {
"authors": [
"AdamL-Microsoft",
"codecov-commenter"
],
"repo": "microsoft/onefuzz",
"url": "https://github.com/microsoft/onefuzz/pull/3540",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
908138385 | fix(tests): test code cleanup, redundant variables
Rebased and updated #1150
It looks like InnerTextShouldThrow is failing across the board.
@kblok thanks for looking at this - I've pushed the change we talked about
| gharchive/pull-request | 2021-06-01T10:18:02 | 2025-04-01T04:57:32.681554 | {
"authors": [
"avodovnik",
"kblok"
],
"repo": "microsoft/playwright-sharp",
"url": "https://github.com/microsoft/playwright-sharp/pull/1466",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2216051542 | [BUG] pf run create does not output print statements to the console
Describe the bug
When invoking a pf run create command that fires off a flow, print statements inside of flow tools are not being output to the console or the logs.txt file
Example command:
pf run create --name test_run1 --flow ./flow --data test_dat... | gharchive/issue | 2024-03-29T22:22:29 | 2025-04-01T04:57:32.723788 | {
"authors": [
"D-W-",
"aaronjolson",
"huaiyan"
],
"repo": "microsoft/promptflow",
"url": "https://github.com/microsoft/promptflow/issues/2564",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2461382179 | [BUG] [VSCode Extension] Unexpected token error, Category Info ParentContainsErrorRecordException
Describe the bug
A clear and concise description of the bug.
I'm attempting to add Azure OpenAI Connection. When I select "Create Connection" in the new_AzureOpenAI_connection.yaml file after updating the applicable vari... | gharchive/issue | 2024-08-12T16:00:45 | 2025-04-01T04:57:32.735011 | {
"authors": [
"Useraccount1o1",
"craig1812"
],
"repo": "microsoft/promptflow",
"url": "https://github.com/microsoft/promptflow/issues/3642",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
659510269 | No tiles in tileset picker switching from text-> blocks
Describe the bug
When I switched from python to blocks to select a tile from the tileset picker, there were no tiles other than transparent
oh noo
The game: https://makecode.com/_7odW60g1jJor
Desktop (please complete the following information):
OS: Windows
Br... | gharchive/issue | 2020-07-17T18:30:47 | 2025-04-01T04:57:32.738857 | {
"authors": [
"livcheerful"
],
"repo": "microsoft/pxt-arcade",
"url": "https://github.com/microsoft/pxt-arcade/issues/2205",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1140672513 | remove invalid links / info in csintro courses
The links on these pages all either stall out or point to uncontrolled ads pages so just pointing to forum
@Jaqster is this okay to merge?
Yes - let's merge!
| gharchive/pull-request | 2022-02-16T22:57:03 | 2025-04-01T04:57:32.739960 | {
"authors": [
"Jaqster",
"jwunderl"
],
"repo": "microsoft/pxt-arcade",
"url": "https://github.com/microsoft/pxt-arcade/pull/4659",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
950213128 | Auth system to use shared local storage
Update auth system to use the pxt server-backed local storage.
LGTM but imo it is very confusing that all of these functions are in a namespace with "localhost" in it.
Agreed. I really struggled to find a good name. I don't love "localhost". If you have a suggestion I'm all... | gharchive/pull-request | 2021-07-22T00:49:57 | 2025-04-01T04:57:32.756950 | {
"authors": [
"eanders-MS"
],
"repo": "microsoft/pxt",
"url": "https://github.com/microsoft/pxt/pull/8321",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1525939201 | Add "play with friends" button to home page
Adds a new button to Arcade's home screen nav bar:
responsive:
Clicking the button takes the user to the multiplayer join page.
The tool button margins are wider than what's in the design, but leaving it for now. Changing this in the app would have effects beyond this vie... | gharchive/pull-request | 2023-01-09T16:40:25 | 2025-04-01T04:57:32.760978 | {
"authors": [
"Jaqster",
"eanders-ms"
],
"repo": "microsoft/pxt",
"url": "https://github.com/microsoft/pxt/pull/9282",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
804102672 | Add C# generation and runtime support for "[value, size = n]" array constructor
This adds C# generation and runtime support for microsoft/qsharp-compiler#856.
Test
@bettinaheim @cesarzc @ScottCarda-MS @swernli ping
| gharchive/pull-request | 2021-02-09T01:12:43 | 2025-04-01T04:57:32.775638 | {
"authors": [
"osostest",
"samarsha"
],
"repo": "microsoft/qsharp-runtime",
"url": "https://github.com/microsoft/qsharp-runtime/pull/507",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
740770455 | How to add custom user control using C++/WinRT
The UI module docs specify how to create a custom user control with C# but not with C++. Adding Blank User Control (C++/WinRT) item to the project does not work – the module itself will compile, but the app using such module will not build, failing with:
TestApp\windows\... | gharchive/issue | 2020-11-11T13:34:04 | 2025-04-01T04:57:32.793127 | {
"authors": [
"asklar",
"bzoz"
],
"repo": "microsoft/react-native-windows-samples",
"url": "https://github.com/microsoft/react-native-windows-samples/issues/315",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
619495167 | Fix command error in rnm-getting-started.md
An error occurred in Install React Native for macOS.
command not found: cd..
"cd" command needs space between args.
- cd macos && pod install && cd..
+ cd macos && pod install && cd ..
Thanks @shoken0x
| gharchive/pull-request | 2020-05-16T15:09:35 | 2025-04-01T04:57:32.795005 | {
"authors": [
"harinikmsft",
"shoken0x"
],
"repo": "microsoft/react-native-windows-samples",
"url": "https://github.com/microsoft/react-native-windows-samples/pull/110",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
618770387 | "ReverseProxy" is the simplest and most practical way is to support powershell !
"ReverseProxy" is the simplest and most practical way is to support powershell !
Can ReverseProxy support command interface support?
If the reverse proxy can support command interface support, it is excellent.
powershell 7.1 preview uses... | gharchive/issue | 2020-05-15T07:48:19 | 2025-04-01T04:57:32.816534 | {
"authors": [
"CheneyYang",
"davidfowl",
"kasini3000",
"samsp-msft"
],
"repo": "microsoft/reverse-proxy",
"url": "https://github.com/microsoft/reverse-proxy/issues/167",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2728605052 | Rate limiting is not working
Describe the bug
Rate limiting is not working, my request are not being blocked.
To Reproduce
builder.Services.AddRateLimiter(options =>
{
options.AddFixedWindowLimiter("ApiPolicy", opt =>
{
opt.Window = TimeSpan.FromMinutes(1);
opt.PermitLimit = 1;
opt.Qu... | gharchive/issue | 2024-12-10T00:17:09 | 2025-04-01T04:57:32.819687 | {
"authors": [
"MihaZupan",
"oricawalid",
"rkargMsft"
],
"repo": "microsoft/reverse-proxy",
"url": "https://github.com/microsoft/reverse-proxy/issues/2681",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1196959899 | Shell commands in documentation contains syntax errors
Hi, thank you for working on this project.
As a developer investigating using Rush on a project
And reading the documentation
I want to be able to follow the getting started instructions
In order to see Rush in action
Given the shell commands in the Rush document... | gharchive/issue | 2022-04-08T07:42:42 | 2025-04-01T04:57:32.827793 | {
"authors": [
"iampeterbanjo",
"octogonz"
],
"repo": "microsoft/rushstack-websites",
"url": "https://github.com/microsoft/rushstack-websites/issues/42",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1551897048 | Add :require-macros to cljc namespaces
I love the library and use it everywhere in https://github.com/sicmutils/sicmutils.
The only issue I have is that to use the macros via cljs, I have to add :include-macros true to my require form: https://github.com/sicmutils/sicmutils/blob/b48ef1f73055b8dd845c91c9e300cec150b014... | gharchive/pull-request | 2023-01-21T19:54:36 | 2025-04-01T04:57:32.841765 | {
"authors": [
"sritchie"
],
"repo": "microsoft/same-ish",
"url": "https://github.com/microsoft/same-ish/pull/25",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1377549126 | Adopt VS Code's Marketplace pre-release flow
I got surprised that I get a notification for updates, which we don't recommend as in this case I didn't do anything SARIF related. It also reminded me that I had to opt-in for the pre-release builds with a setting.
The recommended flow is this: https://github.com/microso... | gharchive/issue | 2022-09-17T01:31:56 | 2025-04-01T04:57:32.845338 | {
"authors": [
"digitarald",
"jeffersonking"
],
"repo": "microsoft/sarif-vscode-extension",
"url": "https://github.com/microsoft/sarif-vscode-extension/issues/459",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1752636976 | "RuntimeError: Event loop is closed" on windows Python 3.10
Describe the bug
A clear and concise description of what the bug is.
Followed the python README tutorials and other examples provided, it alwasys ran into a runtime error:
Exception ignored in: <function _ProactorBasePipeTransport.del at 0x00000289E4B2C550>
... | gharchive/issue | 2023-06-12T12:13:59 | 2025-04-01T04:57:32.852188 | {
"authors": [
"alexchaomander",
"cschadewitz",
"imfuli"
],
"repo": "microsoft/semantic-kernel",
"url": "https://github.com/microsoft/semantic-kernel/issues/1418",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2526867706 | ++!Full Video Mường Thanh Tầng 4 Clip Có Gì
Tầng 4 Mường Thanh nơi được quan tâm nhất hôm nay
Watch 🟢 ➤ ➤ ➤ 🌐 Click Here To link (Full Viral Video Link)
🔴 ➤►DOWNLOAD👉👉 (Full Viral Video Link)
MẸO : Để xem được video clip chất lượng rõ nét hơn. Mọi người nhấp vào video và chọn biểu tượng "Bánh Răng" chọn tiếp chấ... | gharchive/issue | 2024-09-15T11:24:26 | 2025-04-01T04:57:32.972007 | {
"authors": [
"talebtar",
"yamefumbaTF"
],
"repo": "microsoft/semantic-kernel",
"url": "https://github.com/microsoft/semantic-kernel/issues/8797",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1668225362 | Python: Text partitioning module
Motivation and Context
Porting the text partitioning module to python
(Reopening of PR #427 )
Description
This is adding the Text partitioning module in semantic_kernel/semantic_functions/semantic_text_partitioner.py
and the function_extention in semantic_kernel/semantic_functions/fu... | gharchive/pull-request | 2023-04-14T13:12:48 | 2025-04-01T04:57:32.981433 | {
"authors": [
"JTremb",
"awharrison-28",
"dluc",
"lemillermicrosoft"
],
"repo": "microsoft/semantic-kernel",
"url": "https://github.com/microsoft/semantic-kernel/pull/450",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1684614480 | Follow-up on the changes to the SK framework and ensure the sample remains functional.
Motivation and Context
Why is this change required?
Follow-up on the changes to the SK framework(version 0.2.3 to 0.2.4) and ensure the sample remains functional.
What problem does it solve?
Follow-up on the changes from semantic... | gharchive/pull-request | 2023-04-26T09:16:18 | 2025-04-01T04:57:33.002659 | {
"authors": [
"alexchaomander",
"chuanzhubin",
"dluc"
],
"repo": "microsoft/semantic-kernel",
"url": "https://github.com/microsoft/semantic-kernel/pull/667",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
760723449 | Unable to assign ClusterConfiguration using ConfigurationUpgradeDescription method
I am trying to update cluster configuration settings using UpgradeConfigurationAsync (System.Fabric.Description.ConfigurationUpgradeDescription description); but ConfigurationUpgradeDescription is not accepting configuration settings
... | gharchive/issue | 2020-06-04T01:57:44 | 2025-04-01T04:57:33.004318 | {
"authors": [
"AbhishekAdusumilli",
"craftyhouse"
],
"repo": "microsoft/service-fabric",
"url": "https://github.com/microsoft/service-fabric/issues/1115",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1200561993 | Updated Service Fabric 9.0 Release Schedule (Tentative)
Updated Service Fabric 9.0 Release Schedule (Tentative)
@sukanyamsft @peterpogorski any chance it is April 20th, 2022? Would be nice if you can confirm some dates
| gharchive/pull-request | 2022-04-11T21:31:14 | 2025-04-01T04:57:33.005382 | {
"authors": [
"IvanAlekseev",
"sukanyamsft"
],
"repo": "microsoft/service-fabric",
"url": "https://github.com/microsoft/service-fabric/pull/1340",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
486436353 | Small typo in BDC workshop
Found a small typo in the BDC workshop on this page
https://github.com/microsoft/sqlworkshops/blob/master/sqlserver2019bigdataclusters/SQL2019BDC/01 - The Big Data Landscape.md
Activity: Review HDFS Tutorial
There are two primary storage concepts you will work with in SQL Server Big Data Cl... | gharchive/issue | 2019-08-28T14:57:59 | 2025-04-01T04:57:33.006954 | {
"authors": [
"BuckWoody",
"rgward"
],
"repo": "microsoft/sqlworkshops",
"url": "https://github.com/microsoft/sqlworkshops/issues/130",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
503608729 | Update adr.sql
There is no h in Witten :-)
Thanks for the catch! Since this site is more of a book rather than code, we make corrections using "Issues" as described in the main README.md page. This allows the author to maintain the concept and topic flow in each module. We've converted this PR to an Issue for you a... | gharchive/pull-request | 2019-10-07T18:12:08 | 2025-04-01T04:57:33.008433 | {
"authors": [
"AaronBertrand",
"BuckWoody"
],
"repo": "microsoft/sqlworkshops",
"url": "https://github.com/microsoft/sqlworkshops/pull/162",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.