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
<?xml version="1.0"?> | |
<!-- RELAX NG for RELAX NG --> | |
<!-- $Id: relaxng.rng,v 1.31 2002/05/30 06:07:43 jjc Exp $ --> | |
<grammar datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" | |
ns="http://relaxng.org/ns/structure/1.0" | |
xmlns="http://relaxng.org/ns/structure/1.0"> | |
<start> | |
<ref name="pattern"/> | |
</start> | |
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
2016-01-04 15:09:40,534 INFO StaleEntityEviction:com.cloudera.server.cmf.StaleEntityEvictionThread: Reaped total of 0 deleted commands | |
2016-01-04 15:09:40,537 INFO StaleEntityEviction:com.cloudera.server.cmf.StaleEntityEvictionThread: Found no commands older than 2014-01-04T06:09:40.535Z to reap. | |
2016-01-04 15:09:40,538 INFO StaleEntityEviction:com.cloudera.server.cmf.StaleEntityEvictionThread: Wizard is active, not reaping scanners or configurators | |
2016-01-04 15:18:09,984 INFO 1298019891@scm-web-18:com.cloudera.server.web.common.JFrameException: (52 skipped) Exception report generated accessing http://localhost:7180/cmf/parcel/download/CDH-5.5.1-1.cdh5.5.1.p0.11-el7.parcel | |
org.springframework.web.bind.annotation.support.HandlerMethodInvocationException: Failed to invoke handler method [public void com.cloudera.server.web.cmf.ParcelController.downloadParcel(java.lang.String,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException]; nested exception is java.lang. |
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
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0" | |
start = BinarySchema | |
BinarySchema = | |
element BinarySchema { | |
attribute name { xsd:token }, | |
(Blocks | |
& BlockDefinitions? | |
& TypeDefinitions? | |
& FunctionDefinitions?), |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<grammar xmlns="http://relaxng.org/ns/structure/1.0" | |
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" | |
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"> | |
<start> | |
<ref name="BinarySchema"/> | |
</start> | |
<define name="BinarySchema"> | |
<element name="BinarySchema"> | |
<attribute name="name"> |