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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.yahoo.floura</groupId> | |
<artifactId>floura</artifactId> | |
<version>2.0.0</version> | |
<packaging>jar</packaging> | |
<name>floura</name> | |
<properties> | |
<maven.compiler.source>1.7</maven.compiler.source> |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.yahoo.floura</groupId> | |
<artifactId>floura</artifactId> | |
<version>2.0.0</version> | |
<packaging>jar</packaging> | |
<name>floura</name> | |
<properties> | |
<maven.compiler.source>1.7</maven.compiler.source> |
This file has been truncated, but you can view the full file.
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
Logged in as: prasadch | |
Logs for container_1428474791204_251895_01_000001 | |
ResourceManager | |
RM Home | |
NodeManager | |
Tools | |
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
;; Create a map without quoting: (an interesting defmacro exercise!) | |
;; (qmap city nyc population 14000000) | |
;; => {"city" "nyc", "population" "14000000"} | |
;; (some special chars still need to be quoted though!) | |
(defmacro qmap [& args] | |
`(apply hash-map (map name (map str '~args)))) | |
;; conf settings: |
NewerOlder