All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by support with all dependencies

Search JAR files by class name

hnswlib-jna-legacy from group com.stepstone.search.hnswlib.jna (version 1.4.2)

Group: com.stepstone.search.hnswlib.jna Artifact: hnswlib-jna-legacy
Show all versions Show documentation Show source 
 

0 downloads
Artifact hnswlib-jna-legacy
Group com.stepstone.search.hnswlib.jna
Version 1.4.2
Last update 10. February 2021
Organization not specified
URL Not specified
License Apache License, Version 2.0
Dependencies amount 1
Dependencies jna,
There are maybe transitive dependencies!

linuxio4j from group uk.co.bithatch (version 2.1)

A JNA based library providing access to some low-level Linux subsystems, including :- * UInput. Create virtual devices such as keyboards, mice and touchpads and emit events from them as if they were real. * Evdev. Read events from various devices such as keyboards, mice, touchpads, and all other devices exposed by Linux. * Frame Buffer. Write directly to the Linux framebuffer. Allows graphical user interfaces without X being present. As from version 2.0, this library is now in uk.co.bithatch namespace. Version 2.1 and above support Java 8, and module Java 9 and above.

Group: uk.co.bithatch Artifact: linuxio4j
Show all versions Show documentation Show source 
 

0 downloads
Artifact linuxio4j
Group uk.co.bithatch
Version 2.1
Last update 08. December 2020
Organization Bithatch
URL https://github.com/bithatch/linuxio4j
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies jna, jna-platform,
There are maybe transitive dependencies!

akka-contrib_2.12 from group com.typesafe.akka (version 2.5.32)

This subproject provides a home to modules contributed by external developers which may or may not move into the officially supported code base over time. A module in this subproject doesn't have to obey the rule of staying binary compatible between minor releases. Breaking API changes may be introduced in minor releases without notice as we refine and simplify based on your feedback. A module may be dropped in any release without prior deprecation. The Lightbend subscription does not cover support for these modules.

Group: com.typesafe.akka Artifact: akka-contrib_2.12
Show all versions Show documentation Show source 
 

0 downloads
Artifact akka-contrib_2.12
Group com.typesafe.akka
Version 2.5.32
Last update 15. October 2020
Organization Lightbend Inc.
URL https://akka.io/
License Apache License, Version 2.0
Dependencies amount 5
Dependencies scala-library, akka-remote_2.12, akka-cluster_2.12, akka-cluster-tools_2.12, akka-persistence_2.12,
There are maybe transitive dependencies!

akka-contrib_2.11 from group com.typesafe.akka (version 2.5.32)

This subproject provides a home to modules contributed by external developers which may or may not move into the officially supported code base over time. A module in this subproject doesn't have to obey the rule of staying binary compatible between minor releases. Breaking API changes may be introduced in minor releases without notice as we refine and simplify based on your feedback. A module may be dropped in any release without prior deprecation. The Lightbend subscription does not cover support for these modules.

Group: com.typesafe.akka Artifact: akka-contrib_2.11
Show all versions Show documentation Show source 
 

1 downloads
Artifact akka-contrib_2.11
Group com.typesafe.akka
Version 2.5.32
Last update 15. October 2020
Organization Lightbend Inc.
URL https://akka.io/
License Apache License, Version 2.0
Dependencies amount 5
Dependencies scala-library, akka-remote_2.11, akka-cluster_2.11, akka-cluster-tools_2.11, akka-persistence_2.11,
There are maybe transitive dependencies!

akka-contrib_2.13 from group com.typesafe.akka (version 2.5.32)

This subproject provides a home to modules contributed by external developers which may or may not move into the officially supported code base over time. A module in this subproject doesn't have to obey the rule of staying binary compatible between minor releases. Breaking API changes may be introduced in minor releases without notice as we refine and simplify based on your feedback. A module may be dropped in any release without prior deprecation. The Lightbend subscription does not cover support for these modules.

Group: com.typesafe.akka Artifact: akka-contrib_2.13
Show all versions Show documentation Show source 
 

0 downloads
Artifact akka-contrib_2.13
Group com.typesafe.akka
Version 2.5.32
Last update 15. October 2020
Organization Lightbend Inc.
URL https://akka.io/
License Apache License, Version 2.0
Dependencies amount 5
Dependencies scala-library, akka-remote_2.13, akka-cluster_2.13, akka-cluster-tools_2.13, akka-persistence_2.13,
There are maybe transitive dependencies!

clif from group org.ow2.clif (version 3.0.3)

"CLIF is Load Injection Framework": open performance testing. Submit light or massive traffic to your application/service under test, and get response time measurements as well as computing and networking resources usage measurements. Support for large scale distributed load injection (up to +1000 load injectors) with unlimited number of virtual users. Multiple protocols and probes available, extendible through Java programming to generate traffic with arbitrary protocols and to measure arbitrary resources usage. Integration to Eclipse and Jenkins.

Group: org.ow2.clif Artifact: clif
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact clif
Group org.ow2.clif
Version 3.0.3
Last update 29. September 2020
Organization OW2
URL https://clif.ow2.io
License GNU Library or Lesser General Public License (LGPL) version 3
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

suji from group com.github.jikyo (version 0.0.5)

Suji is a converter library from Japanese number notation to numerical value, and from numerical notation to Japanese Kansuji notation. Converter.values(src) to convert from Japanese number notation to numerical value: Japanese number notation can include Kansuji. The String "1つの価格が二兆30万五千十7円になります。" will be converted to two BigDecimal, 1 and 2000000005017. And also, 打率は三割二部五厘です。 will be a 0.325. The return value is a list of Suji Numeral objects. If the input string has no number notation, Suji returns a empty list. The Numeral object has three methods: value(), begin(), and end(): value(): a BigDecimal instance of a numerical value for the number notation. begin(): the begin index (int) of the found number notation at the input string. end(): the end index (int) of the found number notation. Converter.kansujis(src) to convert from numeric notation to Japanese Kansuji notation: The String 20兆30万五千十7円になります。 will be converted to the Kansuji string, 二十兆三十万五千十七. The boolean flag one is interpreted as whether to display the first character 一 or not. The output of Converter.kansujis('1000万', true) will be converted to 一千万, and the output of Converter.kansujis('1000万', false) will be converted to 千万. Note that kansujis does not support numerical notation after the decimal point. If the input string is 32.01, the output will 三十二, not 三十二割一厘. The return value is a list of Kansuji objects. If the input string has no number notation, Suji returns a empty list. The Kansuji object has three methods: value(), begin(), and end(): value(): a String instance of a Kansuji notation. begin(): the begin index (int) of the found number notation at the input string. end(): the end index (int) of the found number notation. Suji is a one-pass parser. That is, Suji parse a source text from the head to the end only once.

Group: com.github.jikyo Artifact: suji
Show all versions Show documentation Show source 
 

0 downloads
Artifact suji
Group com.github.jikyo
Version 0.0.5
Last update 04. September 2020
Organization not specified
URL https://github.com/jikyo/suji4j
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

annis-widgets from group de.hu-berlin.german.korpling.annis (version 4.0.0-beta.4)

Group: de.hu-berlin.german.korpling.annis Artifact: annis-widgets
Show all versions Show documentation Show source 
 

0 downloads
Artifact annis-widgets
Group de.hu-berlin.german.korpling.annis
Version 4.0.0-beta.4
Last update 26. March 2020
Organization not specified
URL Not specified
License not specified
Dependencies amount 6
Dependencies vaadin-compatibility-server, vaadin-compatibility-client-compiled, annis-interfaces, commons-codec, popupbutton, guava-gwt,
There are maybe transitive dependencies!

annis-visualizers from group de.hu-berlin.german.korpling.annis (version 4.0.0-beta.4)

Group: de.hu-berlin.german.korpling.annis Artifact: annis-visualizers
Show all versions Show documentation Show source 
 

1 downloads
Artifact annis-visualizers
Group de.hu-berlin.german.korpling.annis
Version 4.0.0-beta.4
Last update 26. March 2020
Organization not specified
URL http://maven.apache.org
License not specified
Dependencies amount 7
Dependencies guava, jersey-apache-client4, jung-api, jung-graph-impl, gagawa, antlr4, gson,
There are maybe transitive dependencies!

annis-all from group de.hu-berlin.german.korpling.annis (version 4.0.0-beta.4)

ANNIS is an open source, versatile web browser-based search and visualization architecture for complex multilevel linguistic corpora with diverse types of annotation. ANNIS, which stands for ANNotation of Information Structure, has been designed to provide access to the data of the SFB 632 - "Information Structure: The Linguistic Means for Structuring Utterances, Sentences and Texts". Since information structure interacts with linguistic phenomena on many levels, ANNIS addresses the SFB's need to concurrently annotate, query and visualize data from such varied areas as syntax, semantics, morphology, prosody, referentiality, lexis and more. For projects working with spoken language, support for audio / video annotations is also required.

Group: de.hu-berlin.german.korpling.annis Artifact: annis-all
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact annis-all
Group de.hu-berlin.german.korpling.annis
Version 4.0.0-beta.4
Last update 26. March 2020
Organization SFB 632
URL http://corpus-tools.org/annis/
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 1937 from 1960 (items total 19596)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy