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

Download JAR files tagged by uses with all dependencies

Search JAR files by class name

JavaEWAH from group com.googlecode.javaewah (version 1.2.3)

The bit array data structure is implemented in Java as the BitSet class. Unfortunately, this fails to scale without compression. JavaEWAH is a word-aligned compressed variant of the Java bitset class. It uses a 64-bit run-length encoding (RLE) compression scheme. The goal of word-aligned compression is not to achieve the best compression, but rather to improve query processing time. Hence, we try to save CPU cycles, maybe at the expense of storage. However, the EWAH scheme we implemented is always more efficient storage-wise than an uncompressed bitmap (implemented in Java as the BitSet class). Unlike some alternatives, javaewah does not rely on a patented scheme.

Group: com.googlecode.javaewah Artifact: JavaEWAH
Show all versions Show documentation Show source 
 

55 downloads
Artifact JavaEWAH
Group com.googlecode.javaewah
Version 1.2.3
Last update 08. March 2023
Organization not specified
URL https://github.com/lemire/javaewah
License Apache 2
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

anythingworks-exampleproject-clientlib from group com.optimaize.anythingworks.exampleproject.clientlib (version 1.1.0)

The matching web service client library for the server in this example project to connect to the server. This library is ideally provided by the service provider of the server, so that users can go ahead and hack their userland code against this client library, without having to worry about the transport. Whether the client library uses REST or SOAP is up to the implementor, both are possible. A user of the client library usually does not care what technology is used underneath (as long as things are working correctly).

Group: com.optimaize.anythingworks.exampleproject.clientlib Artifact: anythingworks-exampleproject-clientlib
Show all versions Show documentation Show source 
 

0 downloads
Artifact anythingworks-exampleproject-clientlib
Group com.optimaize.anythingworks.exampleproject.clientlib
Version 1.1.0
Last update 20. December 2022
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies anythingworks-exampleproject-ontology, anythingworks-client-rest, anythingworks-client-soap,
There are maybe transitive dependencies!

gcexcel from group com.grapecity.documents.excel (version 6.0.0)

Programmatically generate, load, modify, and convert Excel .xlsx spreadsheets in your Java applications. GrapeCity Documents for Excel (GcExcel) is a cross-platform high-speed, small-footprint spreadsheet API library that requires no dependencies on Excel. The powerful calculation engine supports 450+ Excel Functions and custom functions to perform complex calculations. GcExcel is 2x+ faster and uses less memory than Apache POI and allows you to save to XLSX, PDF, HTML, CSV, JSON and Images. Deploy your applications to the cloud, Windows, Mac, or Linux. If you'd like to remove the trial watermark and other trial limitations, please email [email protected] to request your 30-day evaluation key.

Group: com.grapecity.documents.excel Artifact: gcexcel
Show documentation Show source 
 

0 downloads
Artifact gcexcel
Group com.grapecity.documents.excel
Version 6.0.0
Last update 12. December 2022
Organization not specified
URL https://www.grapecity.com/documents-api-excel-java
License GC Documents EULA
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

json-smart from group com.infomaximum (version 2.4.8)

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.

Group: com.infomaximum Artifact: json-smart
Show documentation Show source 
 

0 downloads
Artifact json-smart
Group com.infomaximum
Version 2.4.8
Last update 26. October 2022
Organization Chemouni Uriel
URL https://urielch.github.io/
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies accessors-smart,
There are maybe transitive dependencies!

jcobyla from group de.xypron.jcobyla (version 1.4)

COBYLA2 is an implementation of Powell's nonlinear derivative free constrained optimization that uses a linear approximation approach. The algorithm is a sequential trust region algorithm that employs linear approximations to the objective and constraint functions, where the approximations are formed by linear interpolation at n + 1 points in the space of the variables and tries to maintain a regular shaped simplex over iterations. It solves nonsmooth NLP with a moderate number of variables (about 100). Inequality constraints only. The initial point X is taken as one vertex of the initial simplex with zero being another, so, X should not be entered as the zero vector.

Group: de.xypron.jcobyla Artifact: jcobyla
Show all versions Show documentation Show source 
 

3 downloads
Artifact jcobyla
Group de.xypron.jcobyla
Version 1.4
Last update 31. May 2022
Organization not specified
URL https://github.com/xypron/jcobyla
License The MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

de.huxhorn.lilith from group de.huxhorn.lilith (version 8.3.0)

Lilith is a logging and access event viewer for the Logback logging framework. It has features comparable to Chainsaw, a logging event viewer for log4j. This means that it can receive logging events from remote applications using Logback as their logging backend. It uses files to buffer the received events locally, so it is possible to keep vast amounts of logging events at your fingertip while still being able to check only the ones you are really interested in by using filtering conditions.

Group: de.huxhorn.lilith Artifact: de.huxhorn.lilith
Show all versions Show documentation Show source 
 

1 downloads
Artifact de.huxhorn.lilith
Group de.huxhorn.lilith
Version 8.3.0
Last update 11. December 2021
Organization not specified
URL http://lilithapp.com
License GNU General Public License v3 (GPL)
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

pyrolite from group net.razorvine (version 5.1)

This library allows your Java program to interface very easily with the Python world. It uses the Pyro protocol to call methods on remote objects. (See https://pyro5.readthedocs.io/). Pyrolite only implements part of the client side Pyro library, hence its name 'lite'... So if you don't need Pyro's full feature set, Pyrolite may be a good choice to connect java or .NET and python. Version 5.0 changes: support Pyro5 wire protocol. Dropped support of Pyro4 (stick to version 4.xx for that).

Group: net.razorvine Artifact: pyrolite
Show all versions Show documentation Show source 
 

30 downloads
Artifact pyrolite
Group net.razorvine
Version 5.1
Last update 17. May 2021
Organization not specified
URL https://github.com/irmen/Pyrolite
License MIT License
Dependencies amount 1
Dependencies serpent,
There are maybe transitive dependencies!

json-smart-mini from group net.minidev (version 1.3.2)

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.

Group: net.minidev Artifact: json-smart-mini
Show all versions Show documentation Show source 
 

8 downloads
Artifact json-smart-mini
Group net.minidev
Version 1.3.2
Last update 04. April 2021
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

jart from group io.jart (version 0.0.4)

JARTs are Java-based Asynchronous Real Time sockets. JART uses JNA to build a pure Java TCP/IP stack upon Netmap. It is implemented in imperative style (no TCP state machine) using asynchronous programming with the help of ea-async. JART runs on both Linux (with the proper Netmap kernel module) and FreeBSD with Netmap enabled. FreeBSD 12.1+ has Netmap in the kernel by default so it works "out of the box". While JART has proven fairly robust in limited testing, it is still a work-in-progress and may not be suitable for production use. Pull requests welcome!

Group: io.jart Artifact: jart
Show all versions Show documentation Show source 
 

0 downloads
Artifact jart
Group io.jart
Version 0.0.4
Last update 06. May 2020
Organization not specified
URL https://github.com/scott-jart-io/jart
License BSD 3-Clause License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

WSClient from group org.simple4j (version 1.1.2)

This is a simple Web Service Client library to call wide variety of web service behind HTTP. In theory it can support any interface or payload. On the request side, to convert java object to HTTP request components (URL, headers, body), templating is used which allows it to call XML, JSON, SOAP, REST or anyother custom interface. On the response side, it uses pluggable parser and a mapper to only extract the fields that are of interest for the client program. The parser currently supports JSON and XML and returns a collections tree.

Group: org.simple4j Artifact: WSClient
Show all versions Show documentation Show source 
 

6 downloads
Artifact WSClient
Group org.simple4j
Version 1.1.2
Last update 21. November 2019
Organization not specified
URL https://github.com/simple4j/WSClient
License MIT License
Dependencies amount 7
Dependencies commons-beanutils, httpclient, httpcore, slf4j-api, jackson-core, jackson-databind, jackson-annotations,
There are maybe transitive dependencies!



Page 144 from 156 (items total 1559)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy