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
com.vmware.o11n.sso.basic-authentication.enabled=true |
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
var resolve = { | |
delay: function($q, $timeout) { | |
console.log("delay"); | |
var delay = $q.defer(); | |
$timeout(delay.resolve, 0, false); | |
return delay.promise; | |
} | |
}; | |
angular.module('viewTransitionApp', ['ngRoute', 'ngAnimate']) |
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
#!/bin/sh | |
# for more info see https://github.com/docker/docker/issues/19261 | |
# Provide values to connect to nodes | |
cert="client.pem" | |
key="client-key.pem" | |
connectionstringnode1="-H=node1:2376 --tls --tlscert=$cert --tlskey=$key" | |
connectionstringnode2="-H=node2:2376 --tls --tlscert=$cert --tlskey=$key" |