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
[ | |
{ | |
"Name": "Ship Flink runtime to cluster", | |
"Path": "s3://<your_bucket>/flink/ship_flink_runtime.sh" | |
}, | |
{ | |
"Name": "Ship application to cluster", | |
"Path": "s3://<your_bucket>/flink/ship_app.sh" | |
} | |
] |
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
if (!Document.prototype.createAttributeNS) { | |
Document.prototype.createAttributeNS = function(namespaceURI, qualifiedName) { | |
var dummy = this.createElement('dummy'); | |
dummy.setAttributeNS(namespaceURI, qualifiedName, ''); | |
var attr = dummy.attributes[0]; | |
dummy.removeAttributeNode(attr); | |
return attr; | |
}; | |
} |
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
<xbl:xbl xmlns:xhtml="http://www.w3.org/1999/xhtml" | |
xmlns:xforms="http://www.w3.org/2002/xforms" | |
xmlns:ev="http://www.w3.org/2001/xml-events" | |
xmlns:xxforms="http://orbeon.org/oxf/xml/xforms" | |
xmlns:fr="http://orbeon.org/oxf/xml/form-runner" | |
xmlns:oxf="http://www.orbeon.com/oxf/processors" | |
xmlns:xbl="http://www.w3.org/ns/xbl" | |
xmlns:xxbl="http://orbeon.org/oxf/xml/xbl"> | |
<xbl:binding id="fr-optional-element" element="fr|optional-element" xxbl:mode="binding handlers" xxbl:container="span"> |