Download JAR files tagged by instantiating with all dependencies
hexarc from group io.github.jahrim (version 0.4.2)
0 downloads
commons-jelly-tags-jmx from group commons-jelly (version 20040902.073310)
Artifact commons-jelly-tags-jmx
Group commons-jelly
Version 20040902.073310
Last update 08. November 2005
Organization not specified
URL Not specified
License not specified
Dependencies amount 7
Dependencies commons-jelly, commons-jelly-tags-bean, mx4j-jmx, commons-jelly-tags-log, commons-jelly-tags-junit, mx4j-tools, commons-cli,
There are maybe transitive dependencies!
Group commons-jelly
Version 20040902.073310
Last update 08. November 2005
Organization not specified
URL Not specified
License not specified
Dependencies amount 7
Dependencies commons-jelly, commons-jelly-tags-bean, mx4j-jmx, commons-jelly-tags-log, commons-jelly-tags-junit, mx4j-tools, commons-cli,
There are maybe transitive dependencies!
staccatissimo-lambda from group net.sf.staccatocommons (version 2.3)
Lightweight library for instantiating functions and predicates
in a DSL style, without using anonymous classes.
This project is aimed to simplify higher-order programming until Java adds
lambdas to its language
Group: net.sf.staccatocommons Artifact: staccatissimo-lambda
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact staccatissimo-lambda
Group net.sf.staccatocommons
Version 2.3
Last update 21. July 2012
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies commons-proxy, javassist, staccatissimo-lang,
There are maybe transitive dependencies!
Group net.sf.staccatocommons
Version 2.3
Last update 21. July 2012
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies commons-proxy, javassist, staccatissimo-lang,
There are maybe transitive dependencies!
commons-lambda from group net.sf.staccatocommons (version 1.2)
Lightweight library for instantiating functions and predicates
in a DSL style, without using anonymous classes.
This project is aimed to simplify higher-order programming until Java adds
lambdas to its language
Group: net.sf.staccatocommons Artifact: commons-lambda
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact commons-lambda
Group net.sf.staccatocommons
Version 1.2
Last update 02. January 2012
Organization not specified
URL http://staccatocommons.sourceforge.net/${project.artifactId}
License not specified
Dependencies amount 3
Dependencies commons-proxy, javassist, commons-lang,
There are maybe transitive dependencies!
Group net.sf.staccatocommons
Version 1.2
Last update 02. January 2012
Organization not specified
URL http://staccatocommons.sourceforge.net/${project.artifactId}
License not specified
Dependencies amount 3
Dependencies commons-proxy, javassist, commons-lang,
There are maybe transitive dependencies!
rouplex-niossl-parent from group org.rouplex (version 1.0.3)
Rouplex-Niossl is a java SPI (service provider interface) for secure (SSL/TLS), selectable, socket channels.
Some of the classes in the java.nio.channels package have been extended by secure counterparts that can be used
side by side, or replace existing instances of the plain implementations. This package contains just the entry
point calls for instantiating such instances, as well as a non-functional, default implementation. For a
concrete implementation of these classes you can take a look at Rouplex-Niossl-Spi, which would be included as
a separate dependency to your applications.
More specifically this library defines SSLSocketChannel class to inherit from SocketChannel,
SSLServerSocketChannel to inherit from ServerSocketChannel and SSLSelector to inherit from SSLSelector. One or
more instances of SSLSocketChannel can be registered with an (or more) instance of SSLSelector to be selected
upon, with the same exact semantics a SocketChannel would expect from registering with a Selector. Further, a
mixture of SocketChannels and SSLSocketChannels can be registered simultaneously with an SSLSelector. The
secure counterparts abide to the same API and semantics defined for plain channels at
https://docs.oracle.com/javase/8/docs/api/java/nio/channels/package-summary.html. This way, the existing
products can be easily updated to provide secure communication and new products can achieve security of data in
transit by using the already proven and excellent patterns for communication such as nio.
Group: org.rouplex Artifact: rouplex-niossl-parent
Show all versions
Show all versions
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact rouplex-niossl-parent
Group org.rouplex
Version 1.0.3
Last update 23. September 2017
Organization not specified
URL https://github.com/rouplex/rouplex-niossl
License FreeBSD
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.rouplex
Version 1.0.3
Last update 23. September 2017
Organization not specified
URL https://github.com/rouplex/rouplex-niossl
License FreeBSD
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
rouplex-niossl from group org.rouplex (version 1.9.3)
A library extending the Jdk1.8 java.nio.channels package with SSL implementations for
SocketChannel, ServerSocketChannel, Selector and SelectorProvider.
1 downloads
Artifact rouplex-niossl
Group org.rouplex
Version 1.9.3
Last update 23. September 2017
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.rouplex
Version 1.9.3
Last update 23. September 2017
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
adp from group de.cit-ec.tcs.alignment (version 3.1.1)
This module contains a more general approach to construct
AlignmentAlgorithms by relying on the theoretical concept of Algebraic
Dynamic Programming (ADP) as developed by Giegerich et al.
ADP defines four ingredients for an alignment algorithm:
1.) A signature that defines the permitted alignment operations.
Operations are just function templates with an associated arity, meaning
the number of arguments it takes from the left sequence and from the
right sequence.
In the TCSAlignmentToolbox we have a fixed signature with the following
operations:
REPLACEMENT(1, 1), DELETION(1, 0), INSERTION(0, 1), SKIPDELETION(1, 0)
and SKIPINSERTION(0, 1)
2.) A regular tree grammar that produces alignments, that is: sequences
of operations, in a restricted fashion.
3.) An algebra that can translate such trees to a cost. In the
TCSAlignmentToolbox this is a Comparator.
4.) A choice function, in case of the TCSAlignmentToolbox: the strict
minimum or the soft minimum.
An alignment algorithm in the TCSAlignmentToolbox sense of the word then
is the combination of choice function and grammar. While we provide
hardcoded versions of these combinations in the main package, the adp
package allows you to create your own grammars. You can combine them with
a choice function by instantiating one of the Algorithm classes provided
in this package with a grammar of your choice.
For example:
AlignmentAlgorithm algo = new SoftADPScoreAlgorithm(my_grammar, comparator);
creates an alignment algorithm that implicitly produces all possible
alignments your grammar can construct with the given input, translates them
to a cost using the algebra/comparator you provided and applies the
soft minimum to return the score. This all gets efficient by dynamic
programming.
Note that there is runtime overhead when using this method in comparison
with the hardcoded algorithms. But for complicated grammars this is a much
easier way to go.
For more information on the theory, please refer to my master's thesis:
"Adaptive Affine Sequence Alignment using Algebraic Dynamic Programming"
0 downloads
Artifact adp
Group de.cit-ec.tcs.alignment
Version 3.1.1
Last update 26. October 2018
Organization not specified
URL http://openresearch.cit-ec.de/projects/tcs
License The GNU Affero General Public License, Version 3
Dependencies amount 1
Dependencies algorithms,
There are maybe transitive dependencies!
Group de.cit-ec.tcs.alignment
Version 3.1.1
Last update 26. October 2018
Organization not specified
URL http://openresearch.cit-ec.de/projects/tcs
License The GNU Affero General Public License, Version 3
Dependencies amount 1
Dependencies algorithms,
There are maybe transitive dependencies!
Page 3 from 3 (items total 27)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy