Download JAR files tagged by status with all dependencies
fury-format from group org.apache.fury (version 0.8.0)
Apache Fury™ is a blazingly fast multi-language serialization framework powered by jit and zero-copy.
Apache Fury (incubating) is an effort undergoing incubation at the Apache
Software Foundation (ASF), sponsored by the Apache Incubator PMC.
Incubation is required of all newly accepted projects until a further review
indicates that the infrastructure, communications, and decision making process
have stabilized in a manner consistent with other successful ASF projects.
While incubation status is not necessarily a reflection of the completeness
or stability of the code, it does indicate that the project has yet to be
fully endorsed by the ASF.
0 downloads
Artifact fury-format
Group org.apache.fury
Version 0.8.0
Last update 27. September 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies fury-core, arrow-vector, jackson-databind, arrow-memory-core,
There are maybe transitive dependencies!
Group org.apache.fury
Version 0.8.0
Last update 27. September 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies fury-core, arrow-vector, jackson-databind, arrow-memory-core,
There are maybe transitive dependencies!
fury-core from group org.apache.fury (version 0.8.0)
Apache Fury™ is a blazingly fast multi-language serialization framework powered by jit and zero-copy.
Apache Fury (incubating) is an effort undergoing incubation at the Apache
Software Foundation (ASF), sponsored by the Apache Incubator PMC.
Incubation is required of all newly accepted projects until a further review
indicates that the infrastructure, communications, and decision making process
have stabilized in a manner consistent with other successful ASF projects.
While incubation status is not necessarily a reflection of the completeness
or stability of the code, it does indicate that the project has yet to be
fully endorsed by the ASF.
0 downloads
Artifact fury-core
Group org.apache.fury
Version 0.8.0
Last update 27. September 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies guava,
There are maybe transitive dependencies!
Group org.apache.fury
Version 0.8.0
Last update 27. September 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies guava,
There are maybe transitive dependencies!
fury-parent from group org.apache.fury (version 0.7.1)
Apache Fury™ is a blazingly fast multi-language serialization framework powered by jit and zero-copy.
Apache Fury (incubating) is an effort undergoing incubation at the Apache
Software Foundation (ASF), sponsored by the Apache Incubator PMC.
Incubation is required of all newly accepted projects until a further review
indicates that the infrastructure, communications, and decision making process
have stabilized in a manner consistent with other successful ASF projects.
While incubation status is not necessarily a reflection of the completeness
or stability of the code, it does indicate that the project has yet to be
fully endorsed by the ASF.
Group: org.apache.fury Artifact: fury-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 fury-parent
Group org.apache.fury
Version 0.7.1
Last update 03. September 2024
Organization not specified
URL https://github.com/apache/fury
License The Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.apache.fury
Version 0.7.1
Last update 03. September 2024
Organization not specified
URL https://github.com/apache/fury
License The Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
slavesdk from group com.mypos (version 2.1.5)
This repository provides a native Android SDK, which enables to integrate your Mobile App with myPOS Card terminals, processed by its platform, to accept card payments (including but not limited to VISA, Mastercard, UnionPay International, JCB, Bancontact). myPOS SDK Android communicates transparently to the card terminal(s) via Bluetooth. To process checkout SDK provides management of the terminal to complete all the steps for transaction processing, return or refund, card storage for recurring transactions, and communicates to the application transaction status, card token, card masked PAN.
No sensitive card data is ever passed through to or stored on the merchant's phone. All data is encrypted by the card terminal, which has been fully certified to the highest industry standards (PCI, EMV I & II, Visa, MasterCard & Amex).
Group: com.mypos Artifact: slavesdk
Show all versions
Show all versions
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact slavesdk
Group com.mypos
Version 2.1.5
Last update 08. August 2024
Organization not specified
URL https://bitbucket.org/MKDimitrov/possdk
License The Apache Software License, Version 2.0
Dependencies amount 5
Dependencies appcompat-v7, design, support-v4, gridlayout-v7, cardview-v7,
There are maybe transitive dependencies!
Group com.mypos
Version 2.1.5
Last update 08. August 2024
Organization not specified
URL https://bitbucket.org/MKDimitrov/possdk
License The Apache Software License, Version 2.0
Dependencies amount 5
Dependencies appcompat-v7, design, support-v4, gridlayout-v7, cardview-v7,
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
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!
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!
sedona-python-adapter-2.4_2.12 from group org.apache.sedona (version 1.2.1-incubating)
A cluster computing system for processing large-scale spatial data: Python Adapter. Apache Sedona is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
Group: org.apache.sedona Artifact: sedona-python-adapter-2.4_2.12
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact sedona-python-adapter-2.4_2.12
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 4
Dependencies jts-core, jts2geojson, sedona-core-2.4_2.12, sedona-sql-2.4_2.12,
There are maybe transitive dependencies!
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 4
Dependencies jts-core, jts2geojson, sedona-core-2.4_2.12, sedona-sql-2.4_2.12,
There are maybe transitive dependencies!
sedona-viz-2.4_2.12 from group org.apache.sedona (version 1.2.1-incubating)
A cluster computing system for processing large-scale spatial data: RDD and SQL for Viz. Apache Sedona is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
Group: org.apache.sedona Artifact: sedona-viz-2.4_2.12
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact sedona-viz-2.4_2.12
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 1
Dependencies awt-color-factory,
There are maybe transitive dependencies!
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 1
Dependencies awt-color-factory,
There are maybe transitive dependencies!
sedona-sql-2.4_2.12 from group org.apache.sedona (version 1.2.1-incubating)
A cluster computing system for processing large-scale spatial data: SQL API. Apache Sedona is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
Group: org.apache.sedona Artifact: sedona-sql-2.4_2.12
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact sedona-sql-2.4_2.12
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
sedona-core-2.4_2.12 from group org.apache.sedona (version 1.2.1-incubating)
A cluster computing system for processing large-scale spatial data: RDD API. Apache Sedona is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
Group: org.apache.sedona Artifact: sedona-core-2.4_2.12
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact sedona-core-2.4_2.12
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
sedona-flink_2.11 from group org.apache.sedona (version 1.2.1-incubating)
A cluster computing system for processing large-scale spatial data: Streaming API for Apache Flink. Apache Sedona is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
Group: org.apache.sedona Artifact: sedona-flink_2.11
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact sedona-flink_2.11
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 1
Dependencies jheaps,
There are maybe transitive dependencies!
Group org.apache.sedona
Version 1.2.1-incubating
Last update 30. August 2022
Organization not specified
URL http://sedona.apache.org/
License not specified
Dependencies amount 1
Dependencies jheaps,
There are maybe transitive dependencies!
Page 37 from 3 (items total 401)