This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using Microsoft.EntityFrameworkCore; | |
using Remotion.Linq.Parsing.ExpressionVisitors; | |
namespace MyApp | |
{ | |
// Dynamic query filters are currently pretty limited in EF Core 2.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: nginx | |
spec: | |
rules: | |
- host: nginx.example.org | |
http: | |
paths: | |
- backend: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2018-06-07T15:21:06.6052998Z ##[section]Starting: Push image | |
2018-06-07T15:21:06.6123753Z ============================================================================== | |
2018-06-07T15:21:06.6140246Z Task : Docker | |
2018-06-07T15:21:06.6156363Z Description : Build, tag, push, or run Docker images, or run a Docker command. Task can be used with Docker or Azure Container registry. | |
2018-06-07T15:21:06.6172754Z Version : 0.3.12 | |
2018-06-07T15:21:06.6188076Z Author : Microsoft Corporation | |
2018-06-07T15:21:06.6204321Z Help : [More Information](https://go.microsoft.com/fwlink/?linkid=848006) | |
2018-06-07T15:21:06.6220508Z ============================================================================== | |
2018-06-07T15:21:07.1468544Z [command]/usr/local/bin/docker push [company].azurecr.io/[app]:9389 | |
2018-06-07T15:21:27.3224626Z The push refers to repository [[company].azurecr.io/[app]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
phases: | |
- phase: Phase1 | |
steps: | |
- powershell: Write-Host "##vso[task.setvariable variable=OutputVar;]UpdatedValueInScript" | |
displayName: Create variable | |
- powershell: Write-Host $env:OutputVar | |
displayName: Print variable | |
# env: | |
# OutputVar: $(OutputVar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyDbContext : DbContext | |
{ | |
private ITenantIdLocator tenantIdLocator; | |
public MyDbContext(ITenantIdLocator tenantIdLocator) | |
{ | |
if (tenantIdLocator == null) throw new ArgumentNullException(nameof(tenantIdLocator)); | |
this.tenantId = tenantIdLocator.GetTenantId(); | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: nginx-configuration-internal | |
namespace: infra | |
labels: | |
app: nginx-ingress | |
tier: internal | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: nginx-configuration-external | |
namespace: infra | |
labels: | |
app: nginx-ingress | |
tier: external | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
annotations: | |
kubernetes.io/ingress.class: nginx-internal | |
name: service | |
spec: | |
rules: | |
- host: service.domain.com | |
http: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
annotations: | |
kubernetes.io/ingress.class: nginx-external | |
name: cm-acme-http-solver-lrsn9 | |
spec: | |
rules: | |
- host: service.domain.com | |
http: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
// Replace the line with the commented and the warning is shown during test. The current line doesn't cause any warnings. | |
// const simulatedApiCall = async () => {} | |
const simulatedApiCall = () => new Promise(resolve => setTimeout(resolve, 100)) | |
const MyTest: React.FC = props => { | |
const [isLoading, setLoading] = React.useState(true) | |
const mounted = React.useRef(false) |
OlderNewer