Google Chrome version - 97.0.4692.99-1
base position - 938553
websites:
using System.CodeDom.Compiler; | |
using System.Text; | |
using System.Text.Json; | |
using Json.Schema; | |
var rawSchemaJson = await File.ReadAllTextAsync("yamlschema.json"); | |
var jsonSchema = JsonSerializer.Deserialize<JsonSchema>(rawSchemaJson) ?? throw new InvalidOperationException("Failed to deserialize schema"); | |
var definitions = jsonSchema.GetDefinitions() ?? throw new InvalidOperationException("Failed to get definitions"); | |
var taskDefinition = definitions["task"]!; |
using System.Text; | |
using Microsoft.CodeAnalysis; | |
using Microsoft.CodeAnalysis.CSharp.Syntax; | |
namespace dotnet_analyzer_ideas; | |
[Generator] | |
public class EnumsSourceGenerator : ISourceGenerator | |
{ |
function download-docker-image { | |
param( | |
[Parameter(Mandatory=$true)] | |
[string]$image, | |
[Parameter(Mandatory=$true)] | |
[string]$tag, | |
[Parameter(Mandatory=$true)] | |
[string]$output |
param( | |
[Parameter(Mandatory = $true)] | |
[string]$ImageName, | |
[string]$Tag = 'latest', | |
[ValidateSet( | |
'DockerIO', | |
'Microsoft' | |
)] | |
[string]$Registry = 'DockerIO' | |
) |
FROM mcr.microsoft.com/dotnet/sdk:6.0-focal | |
ARG PLAYWRIGHT_VERSION | |
# === INSTALL dependencies === | |
RUN apt-get update && \ | |
# Feature-parity with node.js base images. | |
apt-get install -y --no-install-recommends git openssh-client curl && \ | |
# clean apt cache |
Google Chrome version - 97.0.4692.99-1
base position - 938553
websites:
{ | |
"name": "hello-world", | |
"version": "0.1.0", | |
"lockfileVersion": 2, | |
"requires": true, | |
"packages": { | |
"": { | |
"name": "hello-world", | |
"version": "0.1.0", | |
"dependencies": { |
enum Covid19Query { | |
lastUpdate | |
sickPerDateTwoDays | |
sickPatientPerLocation | |
deadPatientsPerDate | |
recoveredPerDay | |
testResultsPerDate | |
infectedPerDate | |
infectedByAgeAndGenderPublic | |
isolatedDoctorsAndNurses |
[ | |
{ | |
"name": "Browser", | |
"it": [] | |
}, | |
{ | |
"name": "Page", | |
"it": [] | |
}, | |
{ |
const utils = require('./test/utils'); | |
const tests = require('./test/playwright.spec'); | |
const collected = []; | |
let current = {}; | |
var options = { | |
playwrightPath: utils.projectRoot(), | |
product: 'Firefox', |