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
PS C:\> Expand-Archive .\vcpkg.zip -DestinationPath C:\vcpkg | |
PS C:\> Set-Location C:\vcpkg\vcpkg-master\ | |
PS C:\vcpkg\vcpkg-master> & .\scripts\bootstrap.ps1 | |
Building vcpkg.exe ... | |
pch.cpp | |
archives.cpp | |
checks.cpp | |
chrono.cpp |
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
drone: | |
image: drone/drone:0.5.0 | |
environment: | |
DRONE_SERVER: ${DRONE_SERVER} | |
DRONE_TOKEN: ${DRONE_TOKEN} | |
DRONE_DEBUG: ${DRONE_DEBUG} | |
DRONE_BACKOFF: ${DRONE_BACKOFF} | |
DRONE_PLUGIN_PULL: ${DRONE_PLUGIN_PULL} | |
DRONE_PLUGIN_NAMESPACE: ${DRONE_PLUGIN_NAMESPACE} | |
DRONE_PLUGIN_WHITELIST: ${DRONE_PLUGIN_WHITELIST} |
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
# Build | |
build: | |
image: golang:1.5 | |
environment: | |
- GO15VENDOREXPERIMENT=1 | |
- GOOS=linux | |
- GOARCH=amd64 | |
- CGO_ENABLED=0 | |
commands: | |
- go get |
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
library string_pad.api; | |
import 'dart:async'; | |
import 'dart:io'; | |
import 'package:rpc/rpc.dart'; | |
class PaddingResponse { | |
String result; | |
} |
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
@JS('navigator') | |
library interop; | |
import 'dart:js' as js; | |
import 'package:js/js.dart'; | |
// Tried using this and Function for onmessage | |
typedef void SystemMessage(js.JsObject value); | |
@JS() |
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 'dart:html'; | |
void main() { | |
query("#text") | |
..text = "Click me!"; | |
// Works when compiled to JS | |
query("#container") | |
..on.drop.add(reverseText); | |
} |
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
// Copyright (c) 2012, John Evans | |
// https://github.com/prujohn/Buckshot | |
// See LICENSE file for Apache 2.0 licensing information. | |
/** | |
* A button that only allows a single selection when part of the same group. */ | |
class RadioButton extends Control | |
{ | |
FrameworkProperty valueProperty, groupNameProperty; |
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
[3857/25598] dom/svg/level3/xpath/XPathResult_invalidIteratorState_NUMBER_TYPE.svg timed out unexpectedly | |
[3858/25598] dom/xhtml/level2/events/dispatchEvent02.xhtml timed out unexpectedly | |
[3859/25598] canvas/philip/tests/2d.path.stroke.skew.html timed out unexpectedly | |
[3860/25598] http/tests/misc/url-in-utf32le.html timed out unexpectedly | |
[3861/25598] css2.1/20110323/margin-applies-to-015.htm timed out unexpectedly | |
[3862/25598] dom/xhtml/level1/core/hc_attrlastchild.xhtml timed out unexpectedly | |
[3863/25598] dom/html/level2/html/HTMLElement39.html timed out unexpectedly | |
[3864/25598] css2.1/t170602-bdr-conflct-w-35-d.html timed out unexpectedly | |
[3865/25598] dom/svg/level3/xpath/XPathResult_invalidIteratorState_ORDERED_NODE_ITERATOR_TYPE.svg timed out unexpectedly | |
[3866/25598] dom/xhtml/level2/events/dispatchEvent03.xhtml timed out unexpectedly |
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
#ifdef _WIN32 | |
#include <malloc.h> | |
#endif | |
#include <cstdint> | |
#include <vector> | |
#include <iostream> | |
/** | |
* Allocator for aligned data. |
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
#include <cstdint> | |
#include <cstdio> | |
#define INLINE __forceinline | |
template <typename HashFunction> | |
class StringHash | |
{ | |
public: | |
template <std::size_t N> |