Prevent package-lock.json changes in PRs#6971:Pull request#238469opened byJames4Ever0 James4Ever0:main Monaco Editor checks#71904:Pull request#238469opened byJames4Ever0 James4Ever0:main January 22, 2025 15:57Action required chat setup - do not bring up confirm dialogs when reloading or cl...
Server task is one kind of special networking task, generated by the framework which calls the task factory, and handed over to the user through the process function. In most cases, the task generated by the user through the task factory is a complex task, which is transparent to the user...
For the interpreted languages that CodeQL supports (Python, Ruby and JavaScript/TypeScript), you can restrict code scanning to files in specific directories by adding apathsarray to the configuration file. You can exclude the files in specific directories from analysis by adding...
The following code example demonstrates how you can obtain an instance of the WorkflowView class using the GetView method. The code then sets several WorkflowView properties, including HScrollBar and VScrollBar, and calls the FitToScreenSize method....
public sealed class DiceRoll : CodeActivity { public OutArgument<int> D1 { get; set; } public OutArgument<int> D2 { get; set; } static Random r = new Random(); protected override void Execute(CodeActivityContext context) { D1.Set(context, r.Next(1, 7)); D2.Set(context, r.Next...
A single workflow can be triggered by multiplescheduleevents. You can access the schedule event that triggered the workflow through thegithub.event.schedulecontext. This example triggers the workflow to run at 5:30 UTC every Monday-Thursday, but skips theNot on Monday or Wednesdaystep on Monday...
This gives you the ability to group related activities by their purpose, such as editing or setting options. In the sample code for the Switch activity, a verb gets added that allows the user to reset all of the conditions on the child branches. Here's the code ...
hdlcoder.runWorkflow(DUT,workflow_config,Name,Value)runs the HDL code generation and deployment workflow according to the specified workflow configuration,workflow_config, with additional options specified by one or moreName,Valuearguments. A best practice is to use the HDL Workflow Advisor to configur...
Now you're ready to write your first simple rule. The best way to proceed is to move from oneTODOcomment in the template to the next, updating the code line by line and removing any unnecessary comments as you go. To write your first rule: ...
Manage Shared Code Add the generated shared source code files to a repository folder that is used by the integration model. sharedCodeRepo ='SharedCodeRepo'; mkdir(sharedCodeRepo); sharedCodeUpdate(previousSharedCodeFolder, sharedCodeRepo,'Interactive', false); ...