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
val sqlContext = new org.apache.spark.sql.SQLContext(sc) | |
val testresults = sqlContext.read.json("/Users/vojta/Code/test.json") | |
testresults.registerTempTable("testresults") | |
testresults.printSchema() | |
// Output: | |
// sqlContext: org.apache.spark.sql.SQLContext = org.apache.spark.sql.SQLContext@5c927efe | |
// testresults: org.apache.spark.sql.DataFrame = [build: string, date: string, finished_epoch: double, first_failed_test_category: string, first_failed_test_error_string: string, first_failed_test_id: string, model: string, result_finished: string, result_started: string, root_test_category: string, root_test_id: string, status: string, tags: struct<mail_failure:boolean,product_failure:boolean,spotlight_failure:boolean,suggestd_failure:boolean>, train: string, uuid: string] | |
// root | |
// |-- build: string (nullable = true) |
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 node | |
// Tarmak 1 | |
// var CHARS = 'nkej nkej nkejcb'; | |
// Tarmak 2 | |
// var CHARS = 'gtfj gtfj nkejcb'; | |
// Tarmak 3 | |
// var CHARS = 'jyo; jyo; jyo; gtfj nkejcb'; |
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
// Annotations can be put on: | |
// - functions / classes | |
// - function parameters | |
@Foo('bar') | |
function foo(@Baz() param1, @Baz() param2: Foo) {} | |
// GETS TRANSPILED INTO: | |
function foo() {} | |
// Using property getters, so that it works with circular references. |
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
class Car { | |
start() {} | |
} | |
class Mustang extends Car { | |
startGasEngine() { | |
print('Starting gas engine.'); | |
} | |
openWindow() {} |
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
// Transpiled by | |
// ./node_modules/traceur/traceur --modules=instantiate | |
System.register("foo", [], function($__export) { | |
"use strict"; | |
var __moduleName = "foo"; | |
return { | |
setters: [], | |
execute: function() { | |
console.log('executing...'); | |
} |
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 {module as nodeBindings} from './node_bindings'; | |
import {Injector} from 'di'; | |
import {Foo} from './foo'; | |
var injector = new Injector(nodeBindings); | |
var foo = injector.get(Foo); |
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
function Config() { | |
this.useFoo = false; | |
this.log = 'infoo; | |
} | |
@Inject(Config) | |
class SomeService{ | |
constructor(config) { | |
// ... |
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
// helper function, we can even ship these | |
define(['di/annotations'], function(annotations) { | |
var Inject = annotations.Inject; | |
var annotate = annotations.annotate; | |
return function inject(fn) { | |
var deps = Array.prototype.slice.call(arguments, 1); | |
var annotation = new Inject(); | |
Inject.apply(annotation, deps); | |
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
it('should call append', inject($, MyUI, function(jQuery, ui) { | |
spyOn(jQuery, 'append'); | |
ui.render(); | |
expect(jQuery.append).toHaveBeenCalled(); | |
}); |
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
<i class="file {{data.extension}}" on-click="emitClick()"> | |
<span class="folder-name">{{data.basename}}</span> | |
</i> |
NewerOlder