[
https://issues.apache.org/jira/browse/UIMA-6200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17070502#comment-17070502
]
Marshall Schor edited comment on UIMA-6200 at 3/29/20, 7:25 PM:
----------------------------------------------------------------
thanks. Turns out I was tripped up by the difference in Firefox vs Chrome
browsers implementation of "ctrl - f" (find). In chrome, it trained me to type
the first several letters of what I'm searching for, and if nothing matched, it
said so. But in FireFox, something changed, and now when I type "makeD" it
says nothing matches, even though if I put the whole word in, it does match...
So I thought it wasn't found. I'll see I can switch firefox's find behavior :)
I see the option is right on the find menu bar... must have gotten clicked on
by accident sometime ago...
was (Author: schor):
thanks. Turns out I was tripped up by the difference in Firefox vs Chrome
browsers implementation of "ctrl - f" (find). In chrome, it trained me to type
the first several letters of what I'm searching for, and if nothing matched, it
said so. But in FireFox, something changed, and now when I type "makeD" it
says nothing matches, even though if I put the whole word in, it does match...
So I thought it wasn't found. I'll see I can switch firefox's find behavior :)
> Constructing aggregate engines is slow
> --------------------------------------
>
> Key: UIMA-6200
> URL: https://issues.apache.org/jira/browse/UIMA-6200
> Project: UIMA
> Issue Type: Bug
> Components: Core Java Framework
> Reporter: Richard Eckart de Castilho
> Priority: Minor
> Fix For: 2.10.5SDK
>
> Attachments: Screenshot 2020-03-15 at 18.52.48.png
>
> Time Spent: 10m
> Remaining Estimate: 0h
>
> Creating an aggregate engine is slow because every time a default fixed flow
> descriptor is loaded from the classpath as XML and parsed.
> *FixedFlowController*
> {code}
> public static FlowControllerDescription getDescription() {
> URL descUrl = FixedFlowController.class
> .getResource("/org/apache/uima/flow/FixedFlowController.xml");
> FlowControllerDescription desc;
> try {
> desc = (FlowControllerDescription) UIMAFramework.getXMLParser().parse(
> new XMLInputSource(descUrl));
> } catch (InvalidXMLException e) {
> throw new UIMARuntimeException(e);
> } catch (IOException e) {
> throw new UIMARuntimeException(e);
> }
> return desc;
> }
> {code}
> IMHO, this should be loaded once and then cached permanently - or be
> constructed completely programmatically (also once!) and never loaded at all.
> !Screenshot 2020-03-15 at 18.52.48.png!
--
This message was sent by Atlassian Jira
(v8.3.4#803005)