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

Download JAR files tagged by works with all dependencies

Search JAR files by class name

executor from group com.jano7 (version 2.0.2)

This small library provides an optimized solution to a problem where tasks for a particular key need to be processed sequentially as they arrive. This kind of problem can be solved by a SingleThreadExecutor, however it is not efficient. The issue is that the tasks for unrelated keys are not being processed in parallel, instead they are put into a queue common to all keys and wait for the single thread to execute them. This library allows them to be executed concurrently. Moreover this library works well in a situation where all the possible keys and their number is not known upfront.

Group: com.jano7 Artifact: executor
Show all versions Show documentation Show source 
 

0 downloads
Artifact executor
Group com.jano7
Version 2.0.2
Last update 20. September 2020
Organization not specified
URL https://github.com/jano7/executor
License MIT License
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!

smartrics-RestFixture from group smartrics.restfixture (version 4.4)

The RestFixture is a FitNesse (http://fitnesse.org) fixture that allows developers and/or product owners to write test fixtures for REST services with simplicity in mind. The idea is to write tests that are self documenting and easy to write and read, without the need to write Java code. The fixture allows test writers to express tests as actions (any of the allowed HTTP methods) to operate on resource URIs and express expectations on the content of the return code, headers and body. All without writing one single line of Java code. And it also works as a living/executable documentation of the API.

Group: smartrics.restfixture Artifact: smartrics-RestFixture
Show all versions Show documentation Show source 
 

46 downloads
Artifact smartrics-RestFixture
Group smartrics.restfixture
Version 4.4
Last update 31. January 2017
Organization smartrics
URL https://github.com/smartrics/RestFixture
License GNU LESSER GENERAL PUBLIC LICENSE
Dependencies amount 6
Dependencies fitnesse, smartrics-RestClient, rhino, jettison, xstream, slf4j-api,
There are maybe transitive dependencies!

powermock from group org.powermock (version 1.6.6)

PowerMock allows you to unit test code normally regarded as untestable. For instance it is possible to mock static methods, remove static initializers, allow mocking without dependency injection and more. PowerMock works by bytecode manipulation. PowerMock also contain some utilities that gives you easier access to an objects internal state. PowerMock can be used to test otherwise untestable code and also to achieve a cleaner separation between test and production code.

Group: org.powermock Artifact: powermock
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact powermock
Group org.powermock
Version 1.6.6
Last update 04. November 2016
Organization not specified
URL http://www.powermock.org
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

blazegraph-gremlin from group com.blazegraph (version 1.0.0)

Welcome to the Blazegraph/TinkerPop3 project. The TP3 implementation has some significant differences from the TP2 version. The data model has been changed to use RDF*, an RDF reification framework described here: https://wiki.blazegraph.com/wiki/index.php/Reification_Done_Right. The concept behind blazegraph-gremlin is that property graph (PG) data can be loaded and accessed via the TinkerPop3 API, but underneath the hood the data will be stored as RDF using the PG data model described in this document. Once PG data has been loaded you can interact with it just like you would interact with ordinary RDF - you can run SPARQL queries or interact with the data via the SAIL API. It just works. The PG data model is also customizable via a round-tripping interface called the BlazeValueFactory, also described in detail in this document.

Group: com.blazegraph Artifact: blazegraph-gremlin
Show documentation Show source 
 

7 downloads
Artifact blazegraph-gremlin
Group com.blazegraph
Version 1.0.0
Last update 26. January 2016
Organization SYSTAP, LLC DBA Blazegraph
URL https://www.blazegraph.com/
License GNU General Public License Version 2 (GPLv2)
Dependencies amount 4
Dependencies gremlin-core, gremlin-groovy, tinkergraph-gremlin, bigdata-core,
There are maybe transitive dependencies!

opencl4java from group com.nativelibs4java (version 1.0.0-RC4)

OpenCL4Java is a thin Java wrapper around OpenCL's C API. It uses JNA as its interop layer library, which means it works on all of the (many) JNA-supported platforms (see http://jna.dev.java.net/). It is autogenerated by JNAerator (http://jnaerator.googlecode.com/), so updates to newer OpenCL specs are a matter of seconds. Note that OpenCL4Java is used by JavaCL, an Object-Oriented API that presents OpenCL in a much more practical, powerful and idiomatic way to Java. For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL.

Group: com.nativelibs4java Artifact: opencl4java
Show all versions Show documentation Show source 
 

5 downloads
Artifact opencl4java
Group com.nativelibs4java
Version 1.0.0-RC4
Last update 08. March 2015
Organization not specified
URL http://code.google.com/p/nativelibs4java/wiki/OpenCL
License not specified
Dependencies amount 1
Dependencies bridj,
There are maybe transitive dependencies!

low-latency-primitive-concurrent-queues from group uk.co.boundedbuffer (version 1.0.0)

An low latency, lock free, primitive bounded blocking queue backed by an int[]. This class mimics the interface of {@linkplain java.util.concurrent.BlockingQueue BlockingQueue}, however works with primitive ints rather than objects, so is unable to actually implement the BlockingQueue. This class takes advantage of the Unsafe.putOrderedObject, which allows us to create non-blocking code with guaranteed writes. These writes will not be re-orderd by instruction reordering. Under the covers it uses the faster store-store barrier, rather than the the slower store-load barrier, which is used when doing a volatile write. One of the trade off with this improved performance is we are limited to a single producer, single consumer.

Group: uk.co.boundedbuffer Artifact: low-latency-primitive-concurrent-queues
Show documentation Show source 
 

0 downloads
Artifact low-latency-primitive-concurrent-queues
Group uk.co.boundedbuffer
Version 1.0.0
Last update 24. February 2014
Organization not specified
URL http://www.boundedbuffer.co.uk
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies mockito-core, japex-maven-plugin,
There are maybe transitive dependencies!

opencl4java-jna from group com.nativelibs4java (version 1.0.0-RC3)

OpenCL4Java is a thin Java wrapper around OpenCL's C API. It uses JNA as its interop layer library, which means it works on all of the (many) JNA-supported platforms (see http://jna.dev.java.net/). It is autogenerated by JNAerator (http://jnaerator.googlecode.com/), so updates to newer OpenCL specs are a matter of seconds. Note that OpenCL4Java is used by JavaCL, an Object-Oriented API that presents OpenCL in a much more practical, powerful and idiomatic way to Java. For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL.

Group: com.nativelibs4java Artifact: opencl4java-jna
Show all versions Show documentation Show source 
 

1 downloads
Artifact opencl4java-jna
Group com.nativelibs4java
Version 1.0.0-RC3
Last update 08. January 2013
Organization not specified
URL http://code.google.com/p/nativelibs4java/wiki/OpenCL
License not specified
Dependencies amount 1
Dependencies jnaerator-runtime,
There are maybe transitive dependencies!

jetty-conf-maven-plugin from group net.uvavru.maven.plugin (version 1.0)

Jetty context XML configuration plugin generator helper. This plugin helps you to generate your Context XML file with a dynamic content such as: * classpath entries * web app resources * maven properties Plugin needs a template Jetty context XML file where the dynamic content is injected. Injection of dynamic content is supported as: * altering the DOM with new values * with enabled filtering dynamic values can be replaced as properties (see bellow) Filtering of the template file is supported. Basically it means you can include content from your maven properties in your context XML file. If desired plugin sets two maven properties with the dynamic content: * jetty.conf-plugin.classpath * jetty.conf-plugin.webapp These properties might be used for filtering as well. Plugin resolves project dependency artifacts. These artifacts are transformed into webapp resources and classpath entries. Works with multi-module projects. Works in Eclipse with enabled m2e.

Group: net.uvavru.maven.plugin Artifact: jetty-conf-maven-plugin
Show documentation Show source 
 

0 downloads
Artifact jetty-conf-maven-plugin
Group net.uvavru.maven.plugin
Version 1.0
Last update 31. May 2012
Organization not specified
URL https://github.com/stepanv/jetty-conf-maven-plugin
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies maven-core, maven-filtering,
There are maybe transitive dependencies!

jtest from group com.parasoft.jtest (version 8.0.122)

Parasoft Jtest is a comprehensive Java testing product for development teams building Java EE, SOA, Web, and other Java applications. It promotes a “test early and often” strategy so that quality is built into the code, and bugs are exposed upon introduction—when fixing them requires minimal rework. By providing fast and easy ways to apply a comprehensive set of testing techniques, Jtest gives even the busiest teams a practical way to ensure that their code works as expected.

Group: com.parasoft.jtest Artifact: jtest
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact jtest
Group com.parasoft.jtest
Version 8.0.122
Last update 11. January 2007
Organization Parasoft
URL http://www.parasoft.com/jsp/products/home.jsp?product=Jtest
License Jtest License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 40 from 44 (items total 438)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy