[jira] [Assigned] (JENA-552) All variables unbound if SERVICE SILENT fails

2013-09-30 Thread Andy Seaborne (JIRA)

 [ 
https://issues.apache.org/jira/browse/JENA-552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy Seaborne reassigned JENA-552:
--

Assignee: Andy Seaborne

> All variables unbound if SERVICE SILENT fails
> -
>
> Key: JENA-552
> URL: https://issues.apache.org/jira/browse/JENA-552
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ, Fuseki, Jena
>Affects Versions: Fuseki 1.0.0
>Reporter: Michael Brunnbauer
>Assignee: Andy Seaborne
>Priority: Minor
> Fix For: Jena 2.11.1
>
>
> I think ?ds and ?ep should be bound in the second result row:
> {noformat}
> INSERT DATA {
> _:b0  .
> _:b1  
> .
> }
> select ?ds ?ep ?s where {
> ?ds  ?ep.
> SERVICE SILENT ?ep {
> select ?s where { ?s ?p ?o } limit 1
> }
> }
> --
> | ds   | ep   | s|
> ==
> | _:b0 |  | _:b1 |
> |  |  |  |
> --
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (JENA-552) All variables unbound if SERVICE SILENT fails

2013-09-30 Thread Andy Seaborne (JIRA)

 [ 
https://issues.apache.org/jira/browse/JENA-552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy Seaborne resolved JENA-552.


   Resolution: Fixed
Fix Version/s: Jena 2.11.1

> All variables unbound if SERVICE SILENT fails
> -
>
> Key: JENA-552
> URL: https://issues.apache.org/jira/browse/JENA-552
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ, Fuseki, Jena
>Affects Versions: Fuseki 1.0.0
>Reporter: Michael Brunnbauer
>Assignee: Andy Seaborne
>Priority: Minor
> Fix For: Jena 2.11.1
>
>
> I think ?ds and ?ep should be bound in the second result row:
> {noformat}
> INSERT DATA {
> _:b0  .
> _:b1  
> .
> }
> select ?ds ?ep ?s where {
> ?ds  ?ep.
> SERVICE SILENT ?ep {
> select ?s where { ?s ?p ?o } limit 1
> }
> }
> --
> | ds   | ep   | s|
> ==
> | _:b0 |  | _:b1 |
> |  |  |  |
> --
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Assigned] (JENA-543) Seq created from resource in another model results in Seq from the wrong model.

2013-09-30 Thread Claude Warren (JIRA)

 [ 
https://issues.apache.org/jira/browse/JENA-543?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claude Warren reassigned JENA-543:
--

Assignee: Claude Warren

> Seq created from resource in another model results in Seq from the wrong 
> model.
> ---
>
> Key: JENA-543
> URL: https://issues.apache.org/jira/browse/JENA-543
> Project: Apache Jena
>  Issue Type: Bug
>  Components: Jena
>Affects Versions: Jena 2.11.0
>Reporter: Claude Warren
>Assignee: Claude Warren
> Attachments: SeqTest.java, SeqTest.java
>
>
> Create model 1.
> Create a resource in model 1
> Create model 2
> call Seq s = model2.getSeq( resource )
> s.getModel() == model1 is true
> s.getModel() == model2 is false
> s.getModel() should return model2



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Assigned] (JENA-544) Bag created from a resource in another model results in a Bag in the wrong model

2013-09-30 Thread Claude Warren (JIRA)

 [ 
https://issues.apache.org/jira/browse/JENA-544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claude Warren reassigned JENA-544:
--

Assignee: Claude Warren

> Bag created from a resource in another model results in a Bag in the wrong 
> model
> 
>
> Key: JENA-544
> URL: https://issues.apache.org/jira/browse/JENA-544
> Project: Apache Jena
>  Issue Type: Bug
>  Components: Jena
>Affects Versions: Jena 2.11.0
>Reporter: Claude Warren
>Assignee: Claude Warren
> Attachments: BagTest.java
>
>
> Create model 1.
> Create a resource in model 1
> Create model 2
> call Bag s = model2.getBag( resource )
> s.getModel() == model1 is true
> s.getModel() == model2 is false
> s.getModel() should return model2



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (JENA-552) All variables unbound if SERVICE SILENT fails

2013-09-30 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-552?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13781749#comment-13781749
 ] 

Hudson commented on JENA-552:
-

SUCCESS: Integrated in Jena_Development_Test #974 (See 
[https://builds.apache.org/job/Jena_Development_Test/974/])
JENA-552 : Return the given binding in the case of SERVICE SILENT + failure. 
(andy: rev 1527515)
* 
/jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/sparql/engine/main/iterator/QueryIterService.java


> All variables unbound if SERVICE SILENT fails
> -
>
> Key: JENA-552
> URL: https://issues.apache.org/jira/browse/JENA-552
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ, Fuseki, Jena
>Affects Versions: Fuseki 1.0.0
>Reporter: Michael Brunnbauer
>Priority: Minor
>
> I think ?ds and ?ep should be bound in the second result row:
> INSERT DATA {
> _:b0  .
> _:b1  
> .
> }
> select ?ds ?ep ?s where {
> ?ds  ?ep.
> SERVICE SILENT ?ep {
> select ?s where { ?s ?p ?o } limit 1
> }
> }
> --
> | ds   | ep   | s|
> ==
> | _:b0 |  | _:b1 |
> |  |  |  |
> --



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Assigned] (JENA-545) Alt created from resource in another model results in an Alt in the wrong model

2013-09-30 Thread Claude Warren (JIRA)

 [ 
https://issues.apache.org/jira/browse/JENA-545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claude Warren reassigned JENA-545:
--

Assignee: Claude Warren

> Alt created from resource in another model results in an Alt in the wrong 
> model
> ---
>
> Key: JENA-545
> URL: https://issues.apache.org/jira/browse/JENA-545
> Project: Apache Jena
>  Issue Type: Bug
>  Components: Jena
>Affects Versions: Jena 2.11.0
>Reporter: Claude Warren
>Assignee: Claude Warren
> Attachments: AltTest.java
>
>
> Create model 1.
> Create a resource in model 1
> Create model 2
> call Alt s = model2.getAlt( resource )
> s.getModel() == model1 is true
> s.getModel() == model2 is false
> s.getModel() should return model2



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (JENA-552) All variables unbound if SERVICE SILENT fails

2013-09-30 Thread Andy Seaborne (JIRA)

 [ 
https://issues.apache.org/jira/browse/JENA-552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy Seaborne updated JENA-552:
---

Description: 
I think ?ds and ?ep should be bound in the second result row:

{noformat}
INSERT DATA {
_:b0  .
_:b1  
.
}

select ?ds ?ep ?s where {
?ds  ?ep.
SERVICE SILENT ?ep {
select ?s where { ?s ?p ?o } limit 1
}
}

--
| ds   | ep   | s|
==
| _:b0 |  | _:b1 |
|  |  |  |
--
{noformat}

  was:
I think ?ds and ?ep should be bound in the second result row:

INSERT DATA {
_:b0  .
_:b1  
.
}

select ?ds ?ep ?s where {
?ds  ?ep.
SERVICE SILENT ?ep {
select ?s where { ?s ?p ?o } limit 1
}
}

--
| ds   | ep   | s|
==
| _:b0 |  | _:b1 |
|  |  |  |
--



> All variables unbound if SERVICE SILENT fails
> -
>
> Key: JENA-552
> URL: https://issues.apache.org/jira/browse/JENA-552
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ, Fuseki, Jena
>Affects Versions: Fuseki 1.0.0
>Reporter: Michael Brunnbauer
>Priority: Minor
>
> I think ?ds and ?ep should be bound in the second result row:
> {noformat}
> INSERT DATA {
> _:b0  .
> _:b1  
> .
> }
> select ?ds ?ep ?s where {
> ?ds  ?ep.
> SERVICE SILENT ?ep {
> select ?s where { ?s ?p ?o } limit 1
> }
> }
> --
> | ds   | ep   | s|
> ==
> | _:b0 |  | _:b1 |
> |  |  |  |
> --
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (JENA-552) All variables unbound if SERVICE SILENT fails

2013-09-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-552?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13781745#comment-13781745
 ] 

ASF subversion and git services commented on JENA-552:
--

Commit 1527515 from [~andy.seaborne] in branch 'jena/trunk'
[ https://svn.apache.org/r1527515 ]

JENA-552 : Return the given binding in the case of SERVICE SILENT + failure.

> All variables unbound if SERVICE SILENT fails
> -
>
> Key: JENA-552
> URL: https://issues.apache.org/jira/browse/JENA-552
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ, Fuseki, Jena
>Affects Versions: Fuseki 1.0.0
>Reporter: Michael Brunnbauer
>Priority: Minor
>
> I think ?ds and ?ep should be bound in the second result row:
> INSERT DATA {
> _:b0  .
> _:b1  
> .
> }
> select ?ds ?ep ?s where {
> ?ds  ?ep.
> SERVICE SILENT ?ep {
> select ?s where { ?s ?p ?o } limit 1
> }
> }
> --
> | ds   | ep   | s|
> ==
> | _:b0 |  | _:b1 |
> |  |  |  |
> --



--
This message was sent by Atlassian JIRA
(v6.1#6144)


FW: jenkins

2013-09-30 Thread Rob Vesse
Potentially useful hint from the Marmotta list about the cause of the
random maven JVM terminations

Rob


On 9/25/13 7:29 AM, "Sergio Fernández"  wrote:

>When randomly the build fails, usually it's with this error message:
>
>   ERROR: Maven JVM terminated unexpectedly with exit code 143
>
>And it looks a known issue in Jenkins:
>
>https://issues.jenkins-ci.org/browse/JENKINS-5144
>
>So I'd try to use the solution the propose there (adding the -Xrs flag
>in global MAVEN_OPTS). Further details about that option at:
>
>http://pic.dhe.ibm.com/infocenter/java7sdk/v7r0/index.jsp?topic=%2Fcom.ibm
>.java.win.70.doc%2Fdiag%2Ftools%2Fdisablingdumpagentswith-xrs.html
>
>Personally I never used such option; so let's see how it behaviours...
>
>-- 
>Sergio Fernández