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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by GStreamer configure 0.10.36, which was | |
generated by GNU Autoconf 2.68. Invocation command line was | |
$ ./configure --prefix=/Users/jdumay/software/homebrew/Cellar/gstreamer/0.10.36 --disable-debug --disable-dependency-tracking --enable-introspection=no | |
## --------- ## |
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
private void initialiseTaskExecutables(final Plugin plugin, final Element element) | |
{ | |
@SuppressWarnings({"unchecked"}) | |
final List<Element> executableElements = element.elements("executable"); | |
if (executableElements != null && !executableElements.isEmpty()) | |
{ | |
final Element executableElement = Iterables.getFirst(executableElements, null); | |
if (executableElement != null) |
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
#!/usr/bin/env python | |
# | |
# Copyright 2011 Calico Cube Inc. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
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
var processService = require_component('processService'); //This is how you get Spring components | |
var task = { | |
execute: function(context) { | |
var logger = context.buildLogger; | |
logger.addLogEntry("Hello World!"); | |
return { | |
taskState: "successful", | |
resultData: {}, | |
taskIdentifier: context; |
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
Java 6 on Mac OS X 10.5 Leopard | |
=============================== | |
Apparently Java 6 (that is, 1.6) has been available on Mac OS X for | |
quite some time (ie. almost a year.) I was entirely unaware of this; | |
I'm probably not the only one. To enable Java 6, simply run | |
`/Applications/Utilities/Java Preferences.app`, and drag the available | |
JVMs into the order you prefer. | |
This will swap the default 'java', 'javac' etc to point to your first |
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
//Excuse me while I get all enterprise in here... | |
class JamesInjectorBean { | |
//Obviously I wont be charging for this | |
} |
NewerOlder