Additional information: Could not load file or assembly 'Microsoft.AnalysisServices.AdomdClient, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
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
case "$(uname)" in | |
Darwin|FreeBSD) | |
archive_md5="$(/sbin/md5 -q "${archive}")" | |
;; | |
OpenBSD) | |
archive_md5="$(/bin/md5 -q "${archive}")" | |
;; | |
Linux|*) |
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
// FastDelegate.h | |
// Efficient delegates in C++ that generate only two lines of asm code! | |
// Documentation is found at http://www.codeproject.com/cpp/FastDelegate.asp | |
// | |
// - Don Clugston, Mar 2004. | |
// Major contributions were made by Jody Hagins. | |
// History: | |
// 24-Apr-04 1.0 * Submitted to CodeProject. | |
// 28-Apr-04 1.1 * Prevent most unsafe uses of evil static function hack. | |
// * Improved syntax for horrible_cast (thanks Paul Bludov). |
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
public class ModuleRegistrationConvention : IRegistrationConvention { | |
#region IRegistrationConvention Members | |
public void Process(Type type, StructureMap.Configuration.DSL.Registry registry) { | |
// only interested in non abstract concrete types that have a matching named interface | |
if (type.IsAbstract || !type.IsClass || type.GetInterface("IModule") == null) | |
return; | |
System.Diagnostics.Debug.WriteLine("Found {0} {1}", type.Name, type.Assembly); | |
registry.AddType(typeof(IModule), type); | |
} |
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
Day job: | |
Favorite Python project: | |
Favorite Conference: | |
Python Experience Level: |
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
public class MikeController : Controller | |
{ | |
// try http://localhost:someport/mike/is/awesome | |
[AcceptVerbs("POST")] | |
public ActionResult Is(String howIsMike) | |
{ | |
// blablabla | |
return View(); | |
} |
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
<?xml version="1.0" encoding="utf-8"?> | |
<Status>0<Status> |
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
// You can test this implementation in http://jsfiddle.net/ciriarte/h8CLw/ | |
var myAnonymousObject = { | |
SessionID: "TEST-PROPERTY_1_VALUE", | |
property_2: "TEST-PROPERTY_2_VALUE", | |
property_3: "TEST-PROPERTY_3_VALUE", | |
property_4: "TEST-PROPERTY_4_VALUE", | |
property_5: "TEST-PROPERTY_5_VALUE", | |
property_6: "TEST-PROPERTY_6_VALUE" | |
}; |
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
Caught in listener.run() com.mot.mrcp.MrcpException: Got an error MRCP Response code of 407: com.mot.mrcp.mrcpv1.client.messages.MrcpResponseMessage@4f8ea17d at com.mot.mrcp.mrcpv1.client.MrcpClient.recognizerStartTimers(MrcpClient.java:1218) at com.mot.mrcp.ec.motomrcpv1.MotV1MRCPASRConnection.waitForResult(MotV1MRCPASRConnection.java:234) at com.voxeo.sipmethod.mrcp.client.impl.MrcpAsrSessionImpl.getRecognizeResult(MrcpAsrSessionImpl.java:766) at com.voxeo.sipmethod.mrcp.client.impl.RecognizerRequestHandleImpl.waitForResult(RecognizerRequestHandleImpl.java:40) at com.voxeo.sipmethod.mrcp.client.impl.RecognizerRequestHandleImpl.waitForResult(RecognizerRequestHandleImpl.java:30) at com.voxeo.tropo.util.MrcpAsrListener$1.awaitResult(MrcpAsrListener.java:105) ... |
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
git log --format=%s v.3.0.6..HEAD --grep=\#[0-9] | sed 's/.*\([0-9]\{3\}\).*$/\1/' | sort | uniq |
OlderNewer