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

Download JAR files tagged by println with all dependencies

Search JAR files by class name

ioh_2.13 from group io.github.kag0 (version 0.1.0)

() => Future(println("oh"))

Group: io.github.kag0 Artifact: ioh_2.13
Show documentation Show source 
 

0 downloads
Artifact ioh_2.13
Group io.github.kag0
Version 0.1.0
Last update 05. August 2020
Organization not specified
URL https://github.com/kag0/ioh
License Unlicense
Dependencies amount 2
Dependencies cats-core_2.13, cats-effect_2.13,
There are maybe transitive dependencies!

println-ktx from group br.dev.dig.logger.printer (version 1.3.0)

Kotlin support/extensioons for SimpleLogger PrintLn

Group: br.dev.dig.logger.printer Artifact: println-ktx
Show all versions Show source 
 

0 downloads
Artifact println-ktx
Group br.dev.dig.logger.printer
Version 1.3.0
Last update 24. March 2023
Organization not specified
URL https://github.com/DIG-/java-logger
License CC BY-ND 4.0
Dependencies amount 3
Dependencies logger-ktx, println, kotlin-stdlib-jdk8,
There are maybe transitive dependencies!

println from group br.dev.dig.logger.printer (version 1.3.0)

Printer for Simple Logger, using System.out.println()

Group: br.dev.dig.logger.printer Artifact: println
Show all versions Show source 
 

0 downloads
Artifact println
Group br.dev.dig.logger.printer
Version 1.3.0
Last update 24. March 2023
Organization not specified
URL https://github.com/DIG-/java-logger
License CC BY-ND 4.0
Dependencies amount 2
Dependencies annotations, logger,
There are maybe transitive dependencies!

sysomod from group de.sdun-zehmke (version 1.0.1)

add the call reference from each System.out.println.

Group: de.sdun-zehmke Artifact: sysomod
Show all versions Show documentation Show source 
 

0 downloads
Artifact sysomod
Group de.sdun-zehmke
Version 1.0.1
Last update 29. November 2019
Organization not specified
URL http://www.sdun-zehmke.de
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

BigTextFileReader from group cn.miw (version 0.0.3)

大文本文件读取工具(线程+缓冲区读取+回调处理),支持同时读取多个文件,一行代码搞定. 多个文件同时读取: new BigTextFileProcess().readBigFile((fileName,line) -> { System.out.println(fileName+":"+line); }, fileNames); 读取单个文件: new BigTextFileProcess().readBigFile(fileName,(fileName,line)->{System.out.println(fileName+":"+line);});

Group: cn.miw Artifact: BigTextFileReader
Show all versions Show documentation Show source 
 

0 downloads
Artifact BigTextFileReader
Group cn.miw
Version 0.0.3
Last update 18. April 2019
Organization not specified
URL https://www.miw.cn
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

clj-append from group com.zensols (version 1.0.5)

Log4j2 Logger that appends using print and println.

Group: com.zensols Artifact: clj-append
Show all versions Show documentation Show source 
 

0 downloads
Artifact clj-append
Group com.zensols
Version 1.0.5
Last update 12. December 2016
Organization not specified
URL https://github.com/plandes/clj-append
License GNU Lesser General Public License, Version 3.0
Dependencies amount 3
Dependencies clojure, log4j-core, log4j-api,
There are maybe transitive dependencies!

clojappend from group com.zensols (version 1.0.3)

Log4j2 Logger that appends using print and println.

Group: com.zensols Artifact: clojappend
Show all versions Show documentation Show source 
 

0 downloads
Artifact clojappend
Group com.zensols
Version 1.0.3
Last update 01. July 2016
Organization not specified
URL https://github.com/plandes/clojappend
License GNU Lesser General Public License, Version 3.0
Dependencies amount 3
Dependencies clojure, log4j-core, log4j-api,
There are maybe transitive dependencies!

utils from group com.campusdual (version 1.1.0)

Class of utilities to generate a random number, express a double with 2 decimal places, list lists with System.out.println(), list and select elements of a list and help to facilitate the input of data by console in a Java project. Also provides a transitive dependency for Gson

Group: com.campusdual Artifact: utils
Show all versions Show documentation Show source 
 

0 downloads
Artifact utils
Group com.campusdual
Version 1.1.0
Last update 27. August 2024
Organization CampusDual
URL https://github.com/CampusDual/utils
License The Apache License, Version 2.0
Dependencies amount 1
Dependencies gson,
There are maybe transitive dependencies!

dudu-RESP-interpreter from group net.yesdata (version 1.0.4)

REdis Serialization Protocol (RESP) implemented in java. You can simply construct string commands to RESP commands, and interpret redis response. By import net.yesdata.RESP_intepreter.* you can play with RESP with happy. How to format command string to RESP style? String command = "INFO"; IInterpreter intepreter = new DefaultRespInterpreter(); String sentCommand = intepreter.FormatCommand(command); How to read and print RESP style response? IInterpreter intepreter = new DefaultRespInterpreter(); List<IRespNode> respNodes = intepreter.IntepretResponse(responseBody); for(IRespNode n : respNodes) { System.out.println(n.toRespFormatString()); }

Group: net.yesdata Artifact: dudu-RESP-interpreter
Show documentation Show source 
 

0 downloads
Artifact dudu-RESP-interpreter
Group net.yesdata
Version 1.0.4
Last update 21. December 2016
Organization not specified
URL https://github.com/yourcaptain/dudu-RESP_intepreter
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
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!



Page 1 from 2 (items total 14)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy