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
<template> | |
<require from="./grid"></require> | |
<require from="./column"></require> | |
<grid> | |
<column header="blah"></column> | |
<column header="test"></column> | |
<column header="thing"></column> | |
<column header="balloons"></column> | |
</grid> |
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
<template> | |
<require from="./grid"></require> | |
<require from="./column"></require> | |
<grid> | |
<column header="blah"></column> | |
<column header="test"></column> | |
<column header="thing"></column> | |
<column header="balloons"></column> | |
</grid> |
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
<template> | |
<require from="./registration-form"></require> | |
<registration-form></registration-form> | |
</template> |
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 {ValidationError} from 'aurelia-validation'; | |
export class AjvValidator { | |
cache = new Map; | |
ajv = new Ajv({ v5: true, allErrors: true, format: 'full' }); | |
validateObject(object) { | |
this.parseSchema(object); | |
let schemaId = this._schemaId(object); | |
if (!this.cache.has(schemaId)) { |
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
<template> | |
<require from="my-element"></require> | |
<my-element view-model.ref="testField"></my-element> | |
</template> |
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
<template> | |
<require from="my-list"></require> | |
<require from="my-list-element"></require> | |
<my-list> | |
<my-list-element>one</my-list-element> | |
<my-list-element>two</my-list-element> | |
<my-list-element>three</my-list-element> | |
</my-list> | |
</template> |
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
<template> | |
<require from="my-list"></require> | |
<require from="my-list-element"></require> | |
<my-list> | |
<my-list-element>one</my-list-element> | |
<my-list-element>two</my-list-element> | |
<my-list-element>three</my-list-element> | |
<my-list-element>four</my-list-element> | |
<my-list-element>five</my-list-element> |
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
SUMMARY = "The Solaris Porting Layer is a Linux kernel module which provides many of the Solaris kernel APIs" | |
LICENSE = "GPLv2" | |
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | |
SRC_URI = "http://archive.zfsonlinux.org/downloads/zfsonlinux/spl/spl-0.6.5.6.tar.gz" | |
SRC_URI[md5sum] = "4544b80018ddc5c39ed395363a582228" | |
SRC_URI[sha256sum] = "167595fe76eb5497c3a1ffe396b6300155d0cbe46d06824a710099ca1ae1b8bd" | |
S = "${WORKDIR}/spl-${PV}" |
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
<template> | |
<require from="grid"></require> | |
<require from="column"></require> | |
<au-grid view-model.ref="grid" rows.bind="people" class="table table-condensed table-bordered"> | |
<au-column header="first name"> | |
<compose view="first-name-view.html"></compose> | |
</au-column> | |
<au-column header="last name"> | |
<compose view-model="last-name" model.bind="row"></compose> |
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
'use strict'; | |
const _ = require('lodash'), | |
Promise = require('bluebird'), | |
amqp = require('.'), | |
config = require('./test/integration/servicebus/eventhubs/config'); | |
var errorHandler = (partitionId, err) => console.warn(`==> RX ERROR (${partitionId}): ${err}`); | |
var messagesCounter = 0; | |
var messageHandler = (partitionId, msg) => { |