Skip to content

Instantly share code, notes, and snippets.

View kinow's full-sized avatar
💭
😬

Bruno P. Kinoshita kinow

💭
😬
View GitHub Profile
Started by user anonymous
Building in workspace /tmp/123/workspace/test-pbuilder
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://github.com/palmerit/temp.git # timeout=10
Fetching upstream changes from https://github.com/palmerit/temp.git
> git --version # timeout=10
> git fetch --tags --progress https://github.com/palmerit/temp.git +refs/heads/*:refs/remotes/origin/*
Seen branch in repository origin/master
Seen 1 remote branch
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description></description>
<logRotator class="hudson.tasks.LogRotator">
<daysToKeep>-1</daysToKeep>
<numToKeep>1</numToKeep>
<artifactDaysToKeep>-1</artifactDaysToKeep>
<artifactNumToKeep>-1</artifactNumToKeep>
</logRotator>
@kinow
kinow / gist:4082207ab0fa0d7d929e
Created December 14, 2014 03:47
Error running tests with JenkinsRule 1.580.1
Exploding /home/kinow/.m2/repository/org/jenkins-ci/main/jenkins-war/1.580.1/jenkins-war-1.580.1-war-for-test.jar into /home/kinow/java/biouno/uno-choice-plugin/./target/jenkins-for-test
Dec 14, 2014 12:19:28 AM org.jvnet.hudson.test.JenkinsRule createWebServer
INFO: Running on http://localhost:56909/jenkins/
Dec 14, 2014 12:19:30 AM jenkins.InitReactorRunner$1 onAttained
INFO: Started initialization
Dec 14, 2014 12:20:01 AM jenkins.InitReactorRunner$1 onAttained
INFO: Listed all plugins
Dec 14, 2014 12:20:02 AM jenkins.InitReactorRunner$1 onAttained
INFO: Prepared all plugins
Dec 14, 2014 12:20:02 AM jenkins.InitReactorRunner$1 onAttained
@kinow
kinow / gist:875851f7379abfcb4f13
Created December 21, 2014 03:39
JavaCC for JENA-632 #1
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
@kinow
kinow / gist:becda136c7ff829ae64a
Created January 4, 2015 15:36
SPARQL W3C Grammar
Query ::= Prologue
( SelectQuery | ConstructQuery | DescribeQuery | AskQuery )
Prologue ::= BaseDecl? PrefixDecl*
BaseDecl ::= 'BASE' IRI_REF
PrefixDecl ::= 'PREFIX' PNAME_NS IRI_REF
SelectQuery ::= 'SELECT' ( 'DISTINCT' | 'REDUCED' )? ( Var+ | '*' ) DatasetClause* WhereClause SolutionModifier
ConstructQuery ::= 'CONSTRUCT' ConstructTemplate DatasetClause* WhereClause SolutionModifier
DescribeQuery ::= 'DESCRIBE' ( VarOrIRIref+ | '*' ) DatasetClause* WhereClause? SolutionModifier
AskQuery ::= 'ASK' DatasetClause* WhereClause
DatasetClause ::= 'FROM' ( DefaultGraphClause | NamedGraphClause )
@kinow
kinow / gist:98851033c3c006154b92
Created February 17, 2015 14:32
dbcp2 build error with jdk8
-------------------------------------------------------
T E S T S
-------------------------------------------------------
[DEBUG] boot classpath: /home/kinow/.m2/repository/org/apache/maven/surefire/surefire-booter/2.17/surefire-booter-2.17.jar /home/kinow/.m2/repository/org/apache/maven/surefire/surefire-api/2.17/surefire-api-2.17.jar /home/kinow/Desktop/dbcp/source/commons-dbcp2-2.1-src/target/test-classes /home/kinow/Desktop/dbcp/source/commons-dbcp2-2.1-src/target/classes /home/kinow/.m2/repository/org/apache/commons/commons-pool2/2.3/commons-pool2-2.3.jar /home/kinow/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar /home/kinow/.m2/repository/junit/junit/4.11/junit-4.11.jar /home/kinow/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar /home/kinow/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar /home/kinow/.m2/repository/tomcat/naming-common/5.0.28/naming-common-5.0.28.jar /home/kinow/.m2/repository
@kinow
kinow / gist:a7c1f3af857830d4dffc
Last active August 29, 2015 14:19
Jena tests
package com.hp.hpl.jena.rdf.model.test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class ASimpleTestCase extends TestCase {
public ASimpleTestCase() {
super("testAnything");
}
>grep -r -H "hpl" . > ~/MISSING.txt
./apache-jena-osgi/jena-osgi/pom.xml: <Export-Package>com.hp.hpl.jena.*,!org.apache.jena.ext.*,org.apache.jena.*</Export-Package>
./apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java:import com.hp.hpl.jena.ontology.Individual;
./apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java:import com.hp.hpl.jena.ontology.ObjectProperty;
./apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java:import com.hp.hpl.jena.ontology.OntModel;
./apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java:import com.hp.hpl.jena.ontology.OntModelSpec;
./apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java:import com.hp.hpl.jena.query.Dataset;
./apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java:import com.hp.hpl.jena.query.DatasetFactory;
./apache-jena-osgi/jena-osgi-t
May 07, 2015 9:44:05 PM hudson.model.UpdateSite updateData
INFO: Obtained the latest update center data file for UpdateSource default
May 07, 2015 9:44:25 PM org.eclipse.jetty.util.log.JavaUtilLog warn
WARNING: Error while serving http://localhost:8080/pluginManager/checkUpdatesServer
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:298)
@kinow
kinow / telegram.lua
Last active August 29, 2015 14:20 — forked from randrews/telegram.lua
function load_dictionary(filename)
local dictionary = {}
for line in io.lines(filename) do
if line:match("^%l%l+$") then
insert(dictionary, line .. "$")
end
end
-- We're cutting all single-letter words, but