This file contains hidden or 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
metadata: | |
name: fantastic-tiger | |
namespace: argo | |
labels: | |
example: 'true' | |
spec: | |
serviceAccountName: argo | |
arguments: | |
parameters: | |
- name: message |
This file contains hidden or 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
client: | |
backoff_config: | |
maxbackoff: 5s | |
maxretries: 20 | |
minbackoff: 100ms | |
batchsize: 102400 | |
batchwait: 1s | |
external_labels: {} | |
timeout: 10s | |
positions: |
This file contains hidden or 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
# Info on GitHub Webhook: https://developer.github.com/v3/repos/hooks/#create-a-hook | |
apiVersion: argoproj.io/v1alpha1 | |
kind: EventSource | |
metadata: | |
name: github-event-source | |
namespace: argo-events | |
spec: | |
type: "github" | |
github: | |
test: |
This file contains hidden or 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
build: Pulling from weaveworks/eksctl | |
Digest: sha256:571a2bf4cbf6d09ddc4f93c7ca02ec79a6e57a5b5c9d4e7554b308a2501928d0 | |
Status: Downloaded newer image for weaveworks/eksctl:build | |
Sending build context to Docker daemon 17.41kB | |
Step 1/14 : FROM golang:1.11-alpine3.8 | |
---> f56365ec0638 | |
Step 2/14 : RUN apk add --no-cache curl git make gcc musl-dev && true | |
---> Running in c40592bd86fb | |
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz |
This file contains hidden or 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
#!groovy | |
import groovy.json.JsonOutput | |
import groovy.json.JsonSlurper | |
/* | |
Please make sure to add the following environment variables: | |
HEROKU_PREVIEW=<your heroku preview app> | |
HEROKU_PREPRODUCTION=<your heroku pre-production app> | |
HEROKU_PRODUCTION=<your heroku production app> |
This file contains hidden or 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
#!groovy | |
import groovy.json.JsonOutput | |
import groovy.json.JsonSlurper | |
/* | |
Please make sure to add the following environment variables: | |
HEROKU_PREVIEW=<your heroku preview app> | |
HEROKU_PREPRODUCTION=<your heroku pre-production app> | |
HEROKU_PRODUCTION=<your heroku production app> |
This file contains hidden or 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
const defaultResolver = require('jest-resolve/build/default_resolver').default; | |
const ScriptTransformer = require('jest-runtime').ScriptTransformer; | |
const fs = require('fs'); | |
const transform = ScriptTransformer.prototype.transform; | |
Object.defineProperty(ScriptTransformer.prototype, 'transform', { | |
enumerable: false, | |
value(file, ...args) { | |
if (!fs.existsSync(file)) { |
This file contains hidden or 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 { BaseHttpController as InversifyBaseHttpController, interfaces } from 'inversify-express-utils'; | |
export class BaseHttpController extends InversifyBaseHttpController { | |
public ok(content: any) { | |
return new HttpResponseMessage(this.httpContext, { statusCode: 200, content }); | |
} | |
public created(location: string, content?: any) { | |
return new HttpResponseMessage(this.httpContext, { | |
statusCode: 201, |
This file contains hidden or 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
Problem signature: | |
Problem Event Name: BEX | |
Application Name: Sling.exe | |
Application Version: 0.0.0.0 | |
Application Timestamp: 5797a099 | |
Fault Module Name: npMoveMediaPlayer.dll | |
Fault Module Version: 8.26.0.109 | |
Fault Module Timestamp: 5783f045 | |
Exception Offset: 001ca3a0 | |
Exception Code: c0000409 |
This file contains hidden or 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
angular.module('ngBindonPolyfill', [['$provide', '$compileProvider', function($provide, $compileProvider) { | |
$compileProvider.component('ngBindonSupportTest', { | |
controller: ['$attrs', function($attrs) { | |
this.a = $attrs; | |
}], | |
bindings: { | |
x: '<', | |
xChanged: '&?' | |
} | |
}); |
NewerOlder