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

Download JAR files tagged by search with all dependencies

Search JAR files by class name

evita_performance_tests from group io.evitadb (version 2024.5.1)

Group: io.evitadb Artifact: evita_performance_tests
Show all versions Show documentation Show source 
 

0 downloads
Artifact evita_performance_tests
Group io.evitadb
Version 2024.5.1
Last update 22. April 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 13
Dependencies jmh-core, evita_api, evita_test_support, evita_engine, evita_store_key_value, evita_store_server, evita_external_api_core, evita_external_api_graphql, evita_external_api_rest, evita_external_api_system, evita_external_api_grpc, evita_java_driver, evita_external_api_grpc_shared,
There are maybe transitive dependencies!

enos-dm-api-pojo from group com.envisioniot (version 2.5.11)

EnOS Device And Asset API pojo 0.2.14-SNAPSHOT ota api pojo and event 0.2.20-SNAPSHOT The Response objects returned by GetEvent and SearchEvent queries are added (including: outputData, eventName, outputNames fields) 0.2.21-SNAPSHOT Increase the internationalization of the four-element description field of the model 0.2.22-SNAPSHOT add some pojo class for private api 0.2.23-SNAPSHOT model-service open api的接口中thingModel增加category模型类型字段 0.2.24-SNAPSHOT 部分search接口增加realTime字段 0.2.25-SNAPSHOT firmware add tag function 0.2.27-SNAPSHOT add max and min fields 0.2.28-SNAPSHOT asset tree api for amc/city infra 0.2.29-SNAPSHOT fix thingModel enableMeasurepointValidate 0.2.30-SNAPSHOT enhancement of search model and update asset and alert engine 增加告警规则sdk 0.2.31-SNAPSHOT move asset node 2.4.0-SNAPSHOT upgrade to 2.4 for support DCM 2.4GA 2.4.1-SNAPSHOT service parameter supports "Required" and "Default Value" fields 2.4.2-SNAPSHOT upgrade to 2.4 for support DCM 2.4GA jar 升级 2.4.3-SNAPSHOT add alert-engine v2.5 alertRule openAPI

Group: com.envisioniot Artifact: enos-dm-api-pojo
Show all versions Show documentation Show source 
 

0 downloads
Artifact enos-dm-api-pojo
Group com.envisioniot
Version 2.5.11
Last update 08. February 2024
Organization not specified
URL http://git.eniot.io/iotdev/enos-commons-all.git
License The Apache Software License, Version 2.0
Dependencies amount 6
Dependencies jaxb-api, enos-commons-api-pojo, apim-poseidon, lombok, commons-codec, hibernate-validator,
There are maybe transitive dependencies!

closure-compiler-parent from group com.vertispan.javascript (version v20230411-1)

Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's JavaScript apps, including Gmail, Google Web Search, Google Maps, and Google Docs. This distribution is slightly modified from the original for easier use with J2CL outside of Bazel by Vertispan LLC. The links and references in this pom.xml will reference the Vertispan fork, to ensure that any error introduced by our changes are not incorrectly blamed on the upstream Google repository.

Group: com.vertispan.javascript Artifact: closure-compiler-parent
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact closure-compiler-parent
Group com.vertispan.javascript
Version v20230411-1
Last update 04. November 2023
Organization not specified
URL https://github.com/vertispan/closure-compiler/
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

chips-n-salsa-examples from group org.cicirello (version 6.4.0)

This package contains several example programs of the usage of the Chips-n-Salsa library. Chips-n-Salsa is a Java library of customizable, hybridizable, iterative, parallel, stochastic, and self-adaptive local search algorithms. Chips-n-Salsa's source code is maintained on GitHub, and the prebuilt jars of the library can be imported from Maven Central using maven or other build tools. The purpose of the package chips-n-salsa-examples is to demonstrate usage of the major functionality of the Chips-n-Salsa library. You can find out more about the Chips-n-Salsa library itself from its website: https://chips-n-salsa.cicirello.org/.

Group: org.cicirello Artifact: chips-n-salsa-examples
Show all versions Show documentation Show source 
 

0 downloads
Artifact chips-n-salsa-examples
Group org.cicirello
Version 6.4.0
Last update 02. August 2023
Organization Cicirello.Org
URL https://github.com/cicirello/chips-n-salsa-examples
License GPL-3.0-or-later
Dependencies amount 1
Dependencies chips-n-salsa,
There are maybe transitive dependencies!

heatshrink-java from group io.github.markrileybot (version 1.0.1)

# heatshrink-java Java library used to encode/decode [heatshrink](https://github.com/atomicobject/heatshrink) compressed data. ## Building ```bash ./gradlew build ``` ## Gradle dependency See https://search.maven.org/artifact/io.github.markrileybot/heatshrink-java/ ## Usage ### Java library ```java int windowSize = 9; int lookaheadSize = 8; ByteArrayOutputStream baos = new ByteArrayOutputStream(); try(HsOutputStream out = new HsOutputStream(baos, windowSize, lookaheadSize)) { out.write("ABCABCABCABCABCABC".getBytes()); } try(HsInputStream hsi = new HsInputStream(new ByteArrayInutStream(baos.toByteArray()), windowSize, lookaheadSize)) { byte[] res = new byte[512]; int len = hsi.read(res); System.out.println(new String(res, 0, len)); } ``` ### CLI ```bash $ java -jar heatshrink-java-exe.jar [-h] [-e|-d] [-v] [-w SIZE] [-l BITS] [IN_FILE] [OUT_FILE] ``` ## Status [![Build Status](https://github.com/markrileybot/heatshrink-java/actions/workflows/gradle-publish.yml/badge.svg)](https://github.com/markrileybot/heatshrink-java/actions/workflows/gradle-publish.yml) [![Coverage Status](https://coveralls.io/repos/github/markrileybot/heatshrink-java/badge.svg?branch=master)](https://coveralls.io/github/markrileybot/heatshrink-java?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey)

Group: io.github.markrileybot Artifact: heatshrink-java
Show all versions Show documentation Show source 
 

0 downloads
Artifact heatshrink-java
Group io.github.markrileybot
Version 1.0.1
Last update 19. October 2022
Organization not specified
URL https://github.com/markrileybot/heatshrink-java
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

concourse-driver-java from group com.cinchapi (version 0.11.2)

Concourse is a distributed database warehouse for transactions, search, and analytics across time. Developers use Concourse to quickly build mission critical software while also benefiting from real time insight into their most important data. With Concourse, end-to-end data management requires no extra infrastructure, no prior configuration and no additional coding–all of which greatly reduce costs and allow developers to focus on core business problems.

Group: com.cinchapi Artifact: concourse-driver-java
Show all versions Show documentation Show source 
 

0 downloads
Artifact concourse-driver-java
Group com.cinchapi
Version 0.11.2
Last update 18. March 2022
Organization not specified
URL https://github.com/cinchapi/concourse
License The Apache License
Dependencies amount 15
Dependencies guava, mockito-all, commons-codec, jsr305, slf4j-api, logback-classic, joda-time, libthrift, commons-configuration, accent4j, lib-config, log4j-over-slf4j, jcl-over-slf4j, gson, ccl,
There are maybe transitive dependencies!

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

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

0 downloads
Artifact hnswlib-jna
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!

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

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

0 downloads
Artifact hnswlib-jna-example
Group com.stepstone.search.hnswlib.jna.example
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 hnswlib-jna,
There are maybe transitive dependencies!

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

This project contains a JNA (Java Native Access) implementation built on top of the native Hnswlib (Hierarchical Navigable Small World Graph) which offers a fast approximate nearest neighbor search. It includes some modifications and simplifications in order to provide Hnswlib features with native like performance to applications written in Java. Differently from the original Python implementation, the multi-thread support is not included in the bindings itself but it can be easily implemented on the Java side.

Group: com.stepstone.search.hnswlib.jna Artifact: hnswlib-jna-parent
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact hnswlib-jna-parent
Group com.stepstone.search.hnswlib.jna
Version 1.4.2
Last update 10. February 2021
Organization not specified
URL https://github.com/stepstone-tech/hnswlib-jna
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

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!



Page 159 from 168 (items total 1677)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy